ULP-ActivitySupport – commitdiff
summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 093e404)
raw | patch | inline | side by side (parent: 093e404)
author | Julian Fietkau <julian.fietkau@unibw.de> | |
Thu, 2 May 2019 14:39:03 +0000 (16:39 +0200) | ||
committer | Julian Fietkau <julian.fietkau@unibw.de> | |
Thu, 2 May 2019 14:39:03 +0000 (16:39 +0200) |
simulator.py | patch | blob | history |
diff --git a/simulator.py b/simulator.py
index fc0bdd8603ef3f627552dac40b2a935d2bba39fc..6ecc863cb9230a367a5d11160ec6f6a371219fa1 100644 (file)
--- a/simulator.py
+++ b/simulator.py
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):