From 683cae8d90ee8c59fd4c739166612bc8163a882f Mon Sep 17 00:00:00 2001 From: ccremers Date: Fri, 11 Aug 2006 14:22:45 +0000 Subject: [PATCH] - Minor. --- gui/Gui/Mainwindow.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/Gui/Mainwindow.py b/gui/Gui/Mainwindow.py index f608979..e37d786 100644 --- a/gui/Gui/Mainwindow.py +++ b/gui/Gui/Mainwindow.py @@ -55,7 +55,7 @@ class MainWindow(wx.Frame): self.CreateExteriorWindowComponents() aTable = wx.AcceleratorTable([ - (wx.ACCEL_ALT, ord('X'), wx.ID_EXIT), + (wx.ACCEL_CTRL, ord('W'), wx.ID_EXIT), (wx.ACCEL_CTRL, ord('Q'), wx.ID_EXIT), (wx.ACCEL_NORMAL, wx.WXK_F1, ID_VERIFY), @@ -100,7 +100,7 @@ class MainWindow(wx.Frame): textfile.close() self.top.AddPage(self.control,"Protocol description") self.settings = Settingswindow.SettingsWindow(self.top,self) - self.top.AddPage(self.settings,"Verification parameters") + self.top.AddPage(self.settings,"Settings") #sizer.Add(self.top,1,wx.EXPAND,1) #self.SetSizer(sizer)