diff --git a/Window.py b/Window.py index ec40a79..1d9e2ce 100755 --- a/Window.py +++ b/Window.py @@ -20,6 +20,10 @@ class Window(object): if 'x' in self.conf and 'y' in self.conf: self.window.move(self.conf['x'], self.conf['y']) + self.label = gtk.Label('-') + + self.window.add(self.label) + self.window.show_all() def run(self):