Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorSimon Schampijer <simon@schampijer.de>2007-09-18 12:24:16 (GMT)
committer Simon Schampijer <simon@schampijer.de>2007-09-18 12:24:16 (GMT)
commit53f12652527f3e5249e6fb867e2a65f6406dc82b (patch)
tree94a6ad81b7adc0eeb67e442d9efbb35d7ef82aa0 /shell
parent0b9eb71046d3d13deba3dc2eee4eeb8a03bd9c77 (diff)
Handle the passing of the child of the toolitem to the WidgetInvoker in ToolInvoker, FrameWidgetInvoker
Diffstat (limited to 'shell')
-rw-r--r--shell/view/frame/frameinvoker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/view/frame/frameinvoker.py b/shell/view/frame/frameinvoker.py
index 2b41655..07dc9d8 100644
--- a/shell/view/frame/frameinvoker.py
+++ b/shell/view/frame/frameinvoker.py
@@ -33,7 +33,7 @@ def _get_screen_area():
class FrameWidgetInvoker(WidgetInvoker):
def __init__(self, widget):
- WidgetInvoker.__init__(self, widget)
+ WidgetInvoker.__init__(self, widget.child)
self._position_hint = self.ANCHORED
self._screen_area = _get_screen_area()