Fixed a few anal retentive tooltip issues. No biggie.

This commit is contained in:
Corollax
2010-10-22 15:01:13 -05:00
committed by cncfanatics
parent db493f8589
commit c35977e407
3 changed files with 4 additions and 4 deletions

View File

@@ -48,7 +48,7 @@ class RechargeViewFull(StatsView):
#Add an empty label first for correct alignment.
sizerTankStats.Add(wx.StaticText(contentPanel, wx.ID_ANY, ""), 0)
toolTipText = {"shieldPassive" : "Passive Shield Recharge", "shieldActive" : "Active Shield Recharge", "armorActive" : "Armor repair amount", "hullActive" : "Hull repair amount"}
toolTipText = {"shieldPassive" : "Passive shield recharge", "shieldActive" : "Active shield boost", "armorActive" : "Armor repair amount", "hullActive" : "Hull repair amount"}
for tankType in ("shieldPassive", "shieldActive", "armorActive", "hullActive"):
bitmap = bitmapLoader.getStaticBitmap("%s_big" % tankType, contentPanel, "icons")
tooltip = wx.ToolTip(toolTipText[tankType])
@@ -110,4 +110,4 @@ class RechargeViewFull(StatsView):
self.panel.Layout()
self.headerPanel.Layout()
RechargeViewFull.register()
RechargeViewFull.register()