From 01eaba66978f3620f26d7c3fa08713a20def4997 Mon Sep 17 00:00:00 2001 From: Ebag333 Date: Wed, 5 Apr 2017 11:44:36 -0700 Subject: [PATCH] First pass --- gui/boosterView.py | 9 ++++++--- gui/statsView.py | 1 + 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/gui/boosterView.py b/gui/boosterView.py index fe0d802d3..b90350bf8 100644 --- a/gui/boosterView.py +++ b/gui/boosterView.py @@ -43,9 +43,12 @@ class BoosterViewDrop(wx.PyDropTarget): class BoosterView(d.Display): - DEFAULT_COLS = ["State", - "attr:boosterness", - "Base Name"] + DEFAULT_COLS = [ + "State", + "attr:boosterness", + "Base Name", + "Price", + ] def __init__(self, parent): d.Display.__init__(self, parent, style=wx.LC_SINGLE_SEL | wx.BORDER_NONE) diff --git a/gui/statsView.py b/gui/statsView.py index 464359695..dc4c0276b 100644 --- a/gui/statsView.py +++ b/gui/statsView.py @@ -52,6 +52,7 @@ from gui.builtinStatsViews import ( # noqa: E402, F401 rechargeViewFull, targetingMiscViewMinimal, priceViewFull, + priceViewMinimal, outgoingViewFull, outgoingViewMinimal, )