From 12e348a0c38cd60d90f1832b970b9d358cefd272 Mon Sep 17 00:00:00 2001 From: cncfanatics Date: Wed, 25 Aug 2010 13:53:24 +0200 Subject: [PATCH] Actualy remove the . after "fit" in the menu tooltips now --- gui/shipBrowser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/shipBrowser.py b/gui/shipBrowser.py index d7c4e83d1..49d2d9d08 100644 --- a/gui/shipBrowser.py +++ b/gui/shipBrowser.py @@ -311,7 +311,7 @@ class ShipMenu(wx.Panel): btn.Layout() setattr(self, name, btn) btn.Enable(False) - btn.SetToolTipString("%s fit." % name.capitalize()) + btn.SetToolTipString("%s fit" % name.capitalize()) sizer.Add(btn, 0, wx.EXPAND) p = wx.Panel(self)