Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/graphics/optionmenu.py
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@tomeuvizoso.net>2007-02-24 17:18:50 (GMT)
committer Tomeu Vizoso <tomeu@tomeuvizoso.net>2007-02-24 17:18:50 (GMT)
commit067f703bfe7787bd4706172f0c56e57874899966 (patch)
treeee7bebdeb9f6052dc2585bed8d19f75fbb0ab831 /sugar/graphics/optionmenu.py
parent951e92395bd80758081fe501d4f73727273dc7ad (diff)
Make OptionMenu grab the pointer on popup.
Diffstat (limited to 'sugar/graphics/optionmenu.py')
-rw-r--r--sugar/graphics/optionmenu.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/sugar/graphics/optionmenu.py b/sugar/graphics/optionmenu.py
index edd1d39..f5a4417 100644
--- a/sugar/graphics/optionmenu.py
+++ b/sugar/graphics/optionmenu.py
@@ -64,6 +64,8 @@ class OptionMenu(hippo.CanvasBox, hippo.CanvasItem):
self._round_box = RoundBox()
self._round_box.props.border_color = color.FRAME_BORDER.get_int()
+ self._round_box.props.spacing = units.points_to_pixels(3)
+ self._round_box.props.padding = units.points_to_pixels(1)
self.append(self._round_box, hippo.PACK_EXPAND)
self._canvas_text = hippo.CanvasText()
@@ -111,10 +113,14 @@ class OptionMenu(hippo.CanvasBox, hippo.CanvasItem):
[x, y] = context.translate_to_screen(self._round_box)
# TODO: Any better place to do this?
- self._menu.props.box_width = self.get_width_request()
+ self._menu.props.box_width = max(self.get_width_request(),
+ self._menu.get_width_request())
[width, height] = self._round_box.get_allocation()
self._menu.popup(x, y + height)
+
+ # Grab the pointer so the menu will popdown on mouse click.
+ self._menu.grab_pointer()
def _menu_action_cb(self, menu, menu_item):
action_id = menu_item.props.action_id