Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2008-05-23 15:47:19 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2008-05-23 15:47:19 (GMT)
commit61c85f863bc731fc74a11a681450cd59fc1e136d (patch)
tree4182f66234a98005e17af57995246bedbd85edae
parent9027f996719eac3ed9e73c0416aca3d13c8f1822 (diff)
Adapt to toolkit API change.
-rw-r--r--src/view/frame/frameinvoker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/frame/frameinvoker.py b/src/view/frame/frameinvoker.py
index 2c15c05..e4a13e1 100644
--- a/src/view/frame/frameinvoker.py
+++ b/src/view/frame/frameinvoker.py
@@ -30,7 +30,7 @@ def _get_screen_area():
class FrameWidgetInvoker(WidgetInvoker):
def __init__(self, widget):
- WidgetInvoker.__init__(self, widget.child)
+ WidgetInvoker.__init__(self, widget, widget.child)
self._position_hint = self.ANCHORED
self._screen_area = _get_screen_area()