Skip to content

Commit

Permalink
Bugfix for settings window
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtificialQualia committed Aug 8, 2017
1 parent 1db7680 commit a963597
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion PyEveLiveDPS/settings/settingsWindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def addOption(self, title, function):
chosenImage = "gear.png"

try:
image = tk.PhotoImage(file=sys._MEIPASS + '\\PyEveLiveDPS\\images\\' + chosenImage)
image = tk.PhotoImage(file=sys._MEIPASS + '\\images\\' + chosenImage)
button.configure(image=image)
button.image = image
except Exception:
Expand Down
2 changes: 1 addition & 1 deletion setup-for-installer.spec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ block_cipher = None
a = Analysis(['PyEveLiveDPS\\peld.py'],
pathex=['.\\PyEveLiveDPS'],
binaries=[],
datas=[('app.ico', '.')],
datas=[('app.ico', '.'), ('.\\PyEveLiveDPS\\images\\*.png', 'images')],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
Expand Down
2 changes: 1 addition & 1 deletion setup-standalone.spec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ block_cipher = None
a = Analysis(['PyEveLiveDPS\\peld.py'],
pathex=['.\\PyEveLiveDPS'],
binaries=[],
datas=[('app.ico', '.')],
datas=[('app.ico', '.'), ('.\\PyEveLiveDPS\\images\\*.png', 'images')],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
Expand Down

0 comments on commit a963597

Please sign in to comment.