From d4bcabed3a0d09b85ddee00f47440a2cbf281988 Mon Sep 17 00:00:00 2001 From: cncfanatics Date: Mon, 25 Oct 2010 18:01:54 +0200 Subject: [PATCH] Make sure calling stag2 is the last thing that happens, else there's crashing chances --- gui/shipBrowser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/shipBrowser.py b/gui/shipBrowser.py index e8a98faf2..e6756b945 100644 --- a/gui/shipBrowser.py +++ b/gui/shipBrowser.py @@ -164,8 +164,8 @@ class CategoryItem(wx.Window): pos = event.GetPosition() x,y = pos - self.shipBrowser.stage2(self.categoryID) event.Skip() + self.shipBrowser.stage2(self.categoryID) def enterW(self,event): self.highlighted = 1