Put bombing view before prices

This commit is contained in:
DarkPhoenix
2025-05-24 01:18:45 +02:00
parent de93777f99
commit 80ced86ace
3 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ __all__ = [
"outgoingViewFull",
"outgoingViewMinimal",
"targetingMiscViewMinimal",
"bombingViewFull",
"priceViewFull",
"priceViewMinimal",
"bombingViewFull",
]

View File

@@ -43,8 +43,8 @@ class StatsPane(wx.Panel):
"outgoing",
"capacitor",
"targetingMisc",
"price",
"bombing",
"price",
]
# Don't have these....yet....

View File

@@ -51,9 +51,9 @@ from gui.builtinStatsViews import ( # noqa: E402, F401
capacitorViewFull,
rechargeViewFull,
targetingMiscViewMinimal,
bombingViewFull,
priceViewFull,
priceViewMinimal,
outgoingViewFull,
outgoingViewMinimal,
bombingViewFull,
)