From 4ccca0efe30f50db2d7f14b17be3717175444bdc Mon Sep 17 00:00:00 2001 From: HomeWorld Date: Fri, 15 Oct 2010 12:58:02 +0300 Subject: [PATCH] Added a border to HP/EHP statictext to make ppl notice that something is wrong with that text and they shouldn't touch it --- gui/builtinStatsViews/resistancesViewFull.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/builtinStatsViews/resistancesViewFull.py b/gui/builtinStatsViews/resistancesViewFull.py index c4061126a..1f416f3b3 100644 --- a/gui/builtinStatsViews/resistancesViewFull.py +++ b/gui/builtinStatsViews/resistancesViewFull.py @@ -81,7 +81,7 @@ class ResistancesViewFull(StatsView): for damageType in ("em", "thermal", "kinetic", "explosive"): sizerResistances.Add(bitmapLoader.getStaticBitmap("%s_big" % damageType, contentPanel, "icons"), wx.GBPosition( row, col ), wx.GBSpan( 1, 1 ), wx.ALIGN_CENTER) col+=1 - self.stEHPs = wx.StaticText(contentPanel, wx.ID_ANY, "EHP") + self.stEHPs = wx.StaticText(contentPanel, wx.ID_ANY, "EHP", style = wx.DOUBLE_BORDER) self.stEHPs.SetToolTip(wx.ToolTip("Click to toggle between effective HP and raw HP")) self.stEHPs.Bind(wx.EVT_LEFT_UP, self.toggleEHP)