Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Orr <will@worrbase.com>2013-05-06 03:14:57 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-06-10 13:46:53 (GMT)
commit3a8760c9e4dff2ebb91f7f5772f6788cce0267dc (patch)
tree896f55412cbadc38a27c9102dd7bf6e3f2f0d88b
parentba1abd4a334a3fb783f2e171c25b735bde6ac6a5 (diff)
Fixed crash in journal when mousing over activity icons
-rw-r--r--src/sugar3/graphics/palettewindow.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sugar3/graphics/palettewindow.py b/src/sugar3/graphics/palettewindow.py
index 995e258..5483ca1 100644
--- a/src/sugar3/graphics/palettewindow.py
+++ b/src/sugar3/graphics/palettewindow.py
@@ -994,9 +994,9 @@ class Invoker(GObject.GObject):
# menu item. We need to postpone destruction of the palette until
# after all signals have propagated from the menu item to the
# palette owner.
- GObject.idle_add(lambda old_palette=self._palette:
- old_palette.destroy(),
- priority=GObject.PRIORITY_LOW)
+ GLib.idle_add(lambda old_palette=self._palette:
+ old_palette.destroy(),
+ priority=GObject.PRIORITY_LOW)
self._palette = palette