From be61b2d2534c83dbf7dd59a2900674e8e8c33f5c Mon Sep 17 00:00:00 2001 From: sqlcoder Date: Sun, 31 May 2009 21:53:10 +0100 Subject: [PATCH] change quit option to standard 'Quit' --- pyfpdb/fpdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/fpdb.py b/pyfpdb/fpdb.py index 70ece5e4..379b4e44 100755 --- a/pyfpdb/fpdb.py +++ b/pyfpdb/fpdb.py @@ -283,7 +283,7 @@ class fpdb: # Create actions actiongroup.add_actions([('main', None, '_Main'), - ('Quit', gtk.STOCK_QUIT, '_Quit me!', None, 'Quit the Program', self.quit), + ('Quit', gtk.STOCK_QUIT, '_Quit', None, 'Quit the Program', self.quit), ('LoadProf', None, '_Load Profile (broken)', 'L', 'Load your profile', self.dia_load_profile), ('EditProf', None, '_Edit Profile (todo)', 'E', 'Edit your profile', self.dia_edit_profile), ('SaveProf', None, '_Save Profile (todo)', 'S', 'Save your profile', self.dia_save_profile),