Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Area.py
diff options
context:
space:
mode:
Diffstat (limited to 'Area.py')
-rw-r--r--Area.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/Area.py b/Area.py
index 68c0e1c..f4c05b6 100644
--- a/Area.py
+++ b/Area.py
@@ -1198,7 +1198,7 @@ class Area(Gtk.DrawingArea):
self._do_process(widget, proc_grayscale)
- def invert_colors(self, widget, old_cursor, source_id, window):
+ def invert_colors(self, widget, old_cursor, window):
"""Apply invert effect.
@param self -- the Area object (GtkDrawingArea)
@@ -1206,7 +1206,7 @@ class Area(Gtk.DrawingArea):
"""
- def internal_invert(self, old_cursor, source_id, window):
+ def internal_invert(self, old_cursor, window):
# load a array with the surface data
for array_type in ['H', 'I', 'L']:
pixels = array.array(array_type)
@@ -1240,8 +1240,7 @@ class Area(Gtk.DrawingArea):
GObject.source_remove(source_id)
window.set_cursor(old_cursor)
- GObject.idle_add(internal_invert, self, old_cursor,
- source_id, window)
+ GObject.idle_add(internal_invert, self, old_cursor, window)
def mirror(self, widget, horizontal=True):
"""Apply mirror horizontal/vertical effect.