From f53c8e9efcb3ead8b19bb9e5969d7c72954b35fa Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Sat, 9 Mar 2019 17:40:13 +0300 Subject: [PATCH] Switch "total" and "character" around So that total is bottom-right item --- 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 0e17ed85c..92aea617f 100644 --- a/gui/builtinStatsViews/priceViewFull.py +++ b/gui/builtinStatsViews/priceViewFull.py @@ -51,7 +51,7 @@ class PriceViewFull(StatsView): gridPrice = wx.GridSizer(2, 3, 0, 0) contentSizer.Add(gridPrice, 0, wx.EXPAND | wx.ALL, 0) - for _type in ("ship", "fittings", "total", "drones", "cargoBay", "character"): + for _type in ("ship", "fittings", "character", "drones", "cargoBay", "total"): if _type in "ship": image = "ship_big" elif _type in ("fittings", "total"):