From 6676dea9676dd57d99b86baf9f7b710710f354a9 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Wed, 6 Jul 2011 18:04:24 -0400 Subject: [PATCH] add msg count label --- Window.py | 4 ++++ 1 file changed, 4 insertions(+) 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):