Do window.show_all() after fullscreen() - this make startup
Do window.show_all() after fullscreen() - this make startup
faster.
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()