From 43a49eff746973b1552996145869e59d9dfe2154 Mon Sep 17 00:00:00 2001 From: cncfanatics Date: Fri, 29 Oct 2010 11:50:25 +0200 Subject: [PATCH] Don't display that we're fetching if we really aren't --- gui/builtinStatsViews/priceViewFull.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gui/builtinStatsViews/priceViewFull.py b/gui/builtinStatsViews/priceViewFull.py index 27aae8dc1..940ae3b75 100644 --- a/gui/builtinStatsViews/priceViewFull.py +++ b/gui/builtinStatsViews/priceViewFull.py @@ -135,7 +135,8 @@ 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:])) if self._cachedShip != shipPrice: self.labelPriceShip.SetLabel("%s ISK" % formatAmount(shipPrice, 3, 3, 9))