add msg count label

This commit is contained in:
Josh Holtrop 2011-07-06 18:04:24 -04:00
parent a701c69dc0
commit 6676dea967

View File

@ -20,6 +20,10 @@ class Window(object):
if 'x' in self.conf and 'y' in self.conf: if 'x' in self.conf and 'y' in self.conf:
self.window.move(self.conf['x'], self.conf['y']) self.window.move(self.conf['x'], self.conf['y'])
self.label = gtk.Label('-')
self.window.add(self.label)
self.window.show_all() self.window.show_all()
def run(self): def run(self):