From afee4ddb8c6f5cdc315d256c014686fc42d06ef6 Mon Sep 17 00:00:00 2001 From: sqlcoder Date: Wed, 27 May 2009 22:25:29 +0100 Subject: [PATCH] minor cosmetic change to autoimport button --- pyfpdb/GuiAutoImport.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfpdb/GuiAutoImport.py b/pyfpdb/GuiAutoImport.py index 06f4a96c..2b4c8b76 100755 --- a/pyfpdb/GuiAutoImport.py +++ b/pyfpdb/GuiAutoImport.py @@ -154,7 +154,7 @@ class GuiAutoImport (threading.Thread): # to watch. if widget.get_active(): # toggled on self.doAutoImportBool = True - widget.set_label(u'Stop Autoimport') + widget.set_label(u' _Stop Autoimport ') if self.pipe_to_hud is None: if os.name == 'nt': command = "python HUD_main.py" + " %s" % (self.database) @@ -190,7 +190,7 @@ class GuiAutoImport (threading.Thread): #print >>self.pipe_to_hud.stdin, "\n" self.pipe_to_hud.communicate('\n') # waits for process to terminate self.pipe_to_hud = None - self.startButton.set_label(u'Start Autoimport') + self.startButton.set_label(u' _Start Autoimport ')