Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCristhofer Travieso <cristhofert97@gmail.com>2012-09-29 18:35:36 (GMT)
committer Cristhofer Travieso <cristhofert97@gmail.com>2012-09-29 18:35:36 (GMT)
commit28d7b9e8b6fe40dc6d90554372c3c428ec7c6062 (patch)
tree079bd710f6cfaa6a73f660aafd4c276b4a8585fc
parent4a60019ca55ee6bec8a206aa2db9b1030a677011 (diff)
Add the game in the dialog
-rw-r--r--dialogs.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/dialogs.py b/dialogs.py
index 3bbc1d9..673dd1b 100644
--- a/dialogs.py
+++ b/dialogs.py
@@ -15,6 +15,7 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
from gettext import gettext as _
+from game import Canvas
from gi.repository import GObject
from gi.repository import Gtk
@@ -119,10 +120,12 @@ class HelpDialog(_DialogWindow):
vbox = Gtk.VBox()
self.content_vbox.pack_start(vbox, True, True, 0)
- label = Gtk.Label()
- label.set_text(_('HELP'))
- label.modify_font(Pango.FontDescription("bold 20"))
+ #label = Gtk.Label()
+ #label.set_text(_('HELP'))
+ #label.modify_font(Pango.FontDescription("bold 20"))
- vbox.pack_start(label, True, True, 0)
+ #vbox.pack_start(label, True, True, 0)
+ game = Canvas()
+ vbox.pack_start(game, True, True, 0)
self.show_all()