From ee0e15b95d1d107ebba55d5804087299a980ceac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Qui=C3=B1ones?= Date: Thu, 17 Jan 2013 14:28:52 -0300 Subject: [PATCH] Fixup for previous commit, 693eaab9 - SL #4384 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Forgot this change from my reviewers. Signed-off-by: Manuel QuiƱones --- src/sugar3/graphics/progressicon.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/sugar3/graphics/progressicon.py b/src/sugar3/graphics/progressicon.py index c0ca8a6a..0153ae20 100644 --- a/src/sugar3/graphics/progressicon.py +++ b/src/sugar3/graphics/progressicon.py @@ -34,12 +34,10 @@ class ProgressIcon(Gtk.DrawingArea): """ def __init__(self, icon_name, pixel_size, stroke_color, fill_color, - direction=None): + direction='vertical'): Gtk.DrawingArea.__init__(self) self._icon_name = icon_name - if direction == None: - direction = 'vertical' self._direction = direction self._progress = 0