From 874bfb3305fe278a4c5acd731d2b600621152a52 Mon Sep 17 00:00:00 2001 From: a-tal Date: Sat, 3 Dec 2016 18:28:31 -0800 Subject: [PATCH] missed a type (cherry picked from commit f416c77) --- gui/builtinStatsViews/resourcesViewFull.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/builtinStatsViews/resourcesViewFull.py b/gui/builtinStatsViews/resourcesViewFull.py index 4f3f63b3b..d9c71ff65 100644 --- a/gui/builtinStatsViews/resourcesViewFull.py +++ b/gui/builtinStatsViews/resourcesViewFull.py @@ -106,7 +106,7 @@ class ResourcesViewFull(StatsView): for type_ in ("turret", "launcher", "drones", "fighter", "calibration"): box = wx.BoxSizer(wx.HORIZONTAL) - bitmap = BitmapLoader.getStaticBitmap("%s_big" % type, parent, "gui") + bitmap = BitmapLoader.getStaticBitmap("%s_big" % type_, parent, "gui") tooltip = wx.ToolTip(tooltipText[type_]) bitmap.SetToolTip(tooltip)