Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dialogs.py12
1 files changed, 10 insertions, 2 deletions
diff --git a/dialogs.py b/dialogs.py
index 673dd1b..b4e7aad 100644
--- a/dialogs.py
+++ b/dialogs.py
@@ -126,6 +126,14 @@ class HelpDialog(_DialogWindow):
#vbox.pack_start(label, True, True, 0)
- game = Canvas()
- vbox.pack_start(game, True, True, 0)
+ helpwidget = HelpWidget()
+ vbox.pack_start(helpwidget, True, True, 0)
+
self.show_all()
+
+class HelpWidget(Canvas):
+
+ def __init__(self):
+ Canvas.__init__(self)
+
+ self._mode = 0