ULP-ActivitySupport – commitdiff

You can use Git to clone the repository via the web URL. Download snapshot (zip)
Bugfix: correct icon paths
authorJulian Fietkau <julian.fietkau@unibw.de>
Thu, 2 May 2019 14:39:03 +0000 (16:39 +0200)
committerJulian Fietkau <julian.fietkau@unibw.de>
Thu, 2 May 2019 14:39:03 +0000 (16:39 +0200)
simulator.py

index fc0bdd8603ef3f627552dac40b2a935d2bba39fc..6ecc863cb9230a367a5d11160ec6f6a371219fa1 100644 (file)
@@ -12,11 +12,12 @@ class ContextSimulator:
     def __init__(self, context):
         self.context = context
         self.icons = {}
-        for icon in ["senior", "bank", "laterne", "infostrahler", "flag"]:
-            self.icons[icon] = Image.open(icon + ".png")
+        for icon in ["senior", "bench", "lamp", "inforadiator", "flag"]:
+            self.icons[icon] = Image.open(os.path.join("icons", icon + ".png"))
             for suffix in ["active", "planned"]:
-                if os.path.isfile(icon + "-" + suffix + ".png"):
-                    self.icons[icon + "-" + suffix] = Image.open(icon + "-" + suffix + ".png")
+                icon_path = os.path.join("icons", icon + "-" + suffix + ".png")
+                if os.path.isfile(icon_path):
+                    self.icons[icon + "-" + suffix] = Image.open(icon_path)
         self._frame_counter = 0
 
     def set_bounds(self):