From 4681d2bf037e39b538abcd7467250aa7ddd38444 Mon Sep 17 00:00:00 2001 From: ccremers Date: Thu, 3 Aug 2006 12:13:47 +0000 Subject: [PATCH] - Work towards new setup --- gui/Scytherthread.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/gui/Scytherthread.py b/gui/Scytherthread.py index a0dae8a..b4ecfb1 100644 --- a/gui/Scytherthread.py +++ b/gui/Scytherthread.py @@ -248,15 +248,11 @@ class ResultWindow(wx.Dialog): btn = wx.ContextHelpButton(self) btnsizer.AddButton(btn) - btn = wx.Button(self, wx.ID_OK) - btn.SetHelpText("The OK button completes the dialog") + btn = wx.Button(self, wx.ID_CLOSE) + btn.SetHelpText("Close window") btn.SetDefault() btnsizer.AddButton(btn) - btn = wx.Button(self, wx.ID_CANCEL) - btn.SetHelpText("The Cancel button cnacels the dialog. (Cool, huh?)") - btnsizer.AddButton(btn) - btnsizer.Realize() sizer.Add(btnsizer, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5)