From 7afbf1e129854886164af3ed96c27900f3a50a24 Mon Sep 17 00:00:00 2001 From: HomeWorld Date: Mon, 13 Sep 2010 14:25:01 +0300 Subject: [PATCH] Little fix for the case when we had a timeout while fetching prices and the retry was successful, make sure that we clear the status msg --- gui/builtinStatsViews/priceViewFull.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/builtinStatsViews/priceViewFull.py b/gui/builtinStatsViews/priceViewFull.py index b82cc16cc..525a50f6b 100644 --- a/gui/builtinStatsViews/priceViewFull.py +++ b/gui/builtinStatsViews/priceViewFull.py @@ -129,7 +129,7 @@ class PriceViewFull(StatsView): else: if self._timer: self._timer.Stop() - #self.labelEMStatus.SetLabel("") + self.labelEMStatus.SetLabel("") modPrice = sum(map(lambda p: p.price or 0, prices[1:])) self.labelPriceShip.SetLabel(formatAmount(shipPrice, 3, 3, 9)) self.labelPriceShip.SetToolTip(wx.ToolTip("%.2f ISK" % shipPrice))