From 77211cd4be4fa7efdd089f24f18401cf1f092121 Mon Sep 17 00:00:00 2001 From: Worros Date: Mon, 21 Jun 2010 18:44:04 +0800 Subject: [PATCH] Revert change to HUD_main window --- pyfpdb/HUD_main.pyw | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pyfpdb/HUD_main.pyw b/pyfpdb/HUD_main.pyw index c31c87d1..92f888d8 100755 --- a/pyfpdb/HUD_main.pyw +++ b/pyfpdb/HUD_main.pyw @@ -98,11 +98,7 @@ class HUD_main(object): self.main_window = gtk.Window() self.main_window.connect("destroy", self.destroy) self.vb = gtk.VBox() - #in .exe version, closing HUD_main window causes window lockup - #until next update cycle (i.e. cannot get focus on poker window while locked) - #temporary workaround to disable close button until fix is found - self.main_window.set_deletable(False) - self.label = gtk.Label(' To close, use "Stop Autoimport" in FPDB.') + self.label = gtk.Label('Closing this window will exit from the HUD.') self.vb.add(self.label) self.main_window.add(self.vb) self.main_window.set_title("HUD Main Window")