Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/graphics/palette.py
diff options
context:
space:
mode:
Diffstat (limited to 'sugar/graphics/palette.py')
-rw-r--r--sugar/graphics/palette.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/sugar/graphics/palette.py b/sugar/graphics/palette.py
index 919b3e7..760f702 100644
--- a/sugar/graphics/palette.py
+++ b/sugar/graphics/palette.py
@@ -49,7 +49,7 @@ class Palette(gobject.GObject):
self._alignment = ALIGNMENT_AUTOMATIC
- self._popup_anim = animator.Animator(0.6, 10)
+ self._popup_anim = animator.Animator(0.3, 10)
self._popup_anim.add(_PopupAnimation(self))
self._popup_anim.start()
@@ -300,7 +300,9 @@ class CanvasInvoker(Invoker):
def get_rect(self):
context = self._item.get_context()
- x, y = context.translate_to_screen(self._item)
+ if context:
+ x, y = context.translate_to_screen(self._item)
+
width, height = self._item.get_allocation()
return gtk.gdk.Rectangle(x, y, width, height)