From 44618d612ded11a2e42c5b78e989666d7e300d98 Mon Sep 17 00:00:00 2001 From: cncfanatics Date: Sun, 24 Oct 2010 23:21:02 +0200 Subject: [PATCH] Correct a small display bug --- 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 d6dd4b35b..36c0bcb24 100644 --- a/gui/builtinStatsViews/resistancesViewFull.py +++ b/gui/builtinStatsViews/resistancesViewFull.py @@ -175,7 +175,7 @@ class ResistancesViewFull(StatsView): if fit.damagePattern is None: self.stEHPs.SetLabel(" HP ") else: - self.stEHPs.SetLabel(" EHP ") + self.stEHPs.SetLabel(" EHP ") sFit = service.Fit.getInstance() sDP = service.DamagePattern.getInstance() sFit.setDamagePattern(fit.ID, sDP.getDamagePattern("Uniform")) @@ -209,7 +209,7 @@ class ResistancesViewFull(StatsView): self.labelEhp.SetLabel("%s" % formatAmount(total, 3, 0, 9)) - if self.stEHPs.GetLabel() == " EHP ": + if self.stEHPs.GetLabel() == " EHP ": self.stEff.SetLabel("( Effective HP: ") self.labelEhp.SetToolTip(wx.ToolTip("Effective: %d HP" % total)) else: