Do window.show_all() after fullscreen() - this make startup

portnov [2008-08-14 06:04:12]
Do window.show_all() after fullscreen() - this make startup
faster.
Filename
qwerty.py
diff --git a/qwerty.py b/qwerty.py
index ce99dcd..0ec6840 100755
--- a/qwerty.py
+++ b/qwerty.py
@@ -299,11 +299,11 @@ class GUI(object):
         self.window = gtk.Window()
         self.window.set_title('Qwerty-Launcher')
         self.window.add(self.keyboard)
-        self.window.show_all()
         self.window.connect('destroy', self.exit)
         self.window.connect('key-release-event', self.on_key)

         self.window.fullscreen()
+        self.window.show_all()
 #         self.window.resize(800,600)

         self.collect_windows()
ViewGit