Commit 05a56b87 authored by Just van Rossum's avatar Just van Rossum

call the correct base method (found due to better inheritance checking in 2.2)

parent 666b1e7e
......@@ -455,7 +455,7 @@ class HorizontalPanes(Widget):
"""panesizes should be a tuple of numbers. The length of the tuple is the number of panes,
the items in the tuple are the relative sizes of these panes; these numbers should add up
to 1 (the total size of all panes)."""
ClickableWidget.__init__(self, possize)
Widget.__init__(self, possize)
self._panesizes = panesizes
self._gutter = gutter
self._enabled = 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment