Add preferences shortcut key #246

master
daid303 2012-10-29 10:31:36 +01:00
parent afd27022de
commit 7f4d315629
2 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ class mainWindow(configBase.configWindowBase):
i = fileMenu.Append(-1, 'Reset Profile to default')
self.Bind(wx.EVT_MENU, self.OnResetProfile, i)
fileMenu.AppendSeparator()
i = fileMenu.Append(-1, 'Preferences...')
i = fileMenu.Append(-1, 'Preferences...\tCTRL+,')
self.Bind(wx.EVT_MENU, self.OnPreferences, i)
fileMenu.AppendSeparator()
i = fileMenu.Append(wx.ID_EXIT, 'Quit')

View File

@ -37,7 +37,7 @@ class simpleModeWindow(configBase.configWindowBase):
i = fileMenu.Append(-1, 'Print...\tCTRL+P')
self.Bind(wx.EVT_MENU, self.OnPrint, i)
fileMenu.AppendSeparator()
i = fileMenu.Append(-1, 'Preferences...')
i = fileMenu.Append(-1, 'Preferences...\tCTRL+,')
self.Bind(wx.EVT_MENU, self.OnPreferences, i)
fileMenu.AppendSeparator()
i = fileMenu.Append(wx.ID_EXIT, 'Quit')