From cb6e85e50c2d03732e29f5ae78e83d41545838a8 Mon Sep 17 00:00:00 2001 From: HomeWorld Date: Fri, 22 Oct 2010 18:47:59 +0300 Subject: [PATCH] Minor tooltip text corrections --- gui/builtinStatsViews/resistancesViewFull.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/builtinStatsViews/resistancesViewFull.py b/gui/builtinStatsViews/resistancesViewFull.py index c0d90e401..dc06e01c6 100644 --- a/gui/builtinStatsViews/resistancesViewFull.py +++ b/gui/builtinStatsViews/resistancesViewFull.py @@ -78,7 +78,7 @@ class ResistancesViewFull(StatsView): # Add an empty label, then the rest. sizerResistances.Add(wx.StaticText(contentPanel, wx.ID_ANY), wx.GBPosition( row, col ), wx.GBSpan( 1, 1 )) col+=1 - toolTipText = {"em" : "EM", "thermal" : "Thermal", "kinetic" : "Kinetic", "explosive" : "Explosive"} + toolTipText = {"em" : "Electromagnetic resistance", "thermal" : "Thermal resistance", "kinetic" : "Kinetic resistance", "explosive" : "Explosive resistance"} for damageType in ("em", "thermal", "kinetic", "explosive"): bitmap = bitmapLoader.getStaticBitmap("%s_big" % damageType, contentPanel, "icons") tooltip = wx.ToolTip(toolTipText[damageType]) @@ -97,7 +97,7 @@ class ResistancesViewFull(StatsView): gaugeColours=( ((38,133,198),(52,86,98)), ((198,38,38),(83,65,67)), ((163,163,163),(74,90,93)), ((198,133,38),(81,83,67)) ) - toolTipText = {"shield" : "Shield", "armor" : "Armor", "hull" : "Hull", "damagePattern" : "Damage Pattern"} + toolTipText = {"shield" : "Shield resistances", "armor" : "Armor resistances", "hull" : "Hull resistances", "damagePattern" : "Incoming damage pattern"} for tankType in ("shield", "armor", "hull", "separator", "damagePattern"): if tankType != "separator": bitmap = bitmapLoader.getStaticBitmap("%s_big" % tankType, contentPanel, "icons")