Skip to content

Commit

Permalink
Add justification for change in previous commit (which stopped using
Browse files Browse the repository at this point in the history
theme icon as app icon).
  • Loading branch information
wrzwicky committed Oct 16, 2017
1 parent 281f3e7 commit 3ac6029
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions fofix/core/GameEngine.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,10 @@ def __init__(self, config = None):
self.restartRequested = False

# Find window icon
fofixicon = os.path.join(Version.dataPath(), "fofix_icon.png")
icon = fofixicon
#WRZ Note that in the past, we used the theme icon if present.
# This is wrong IMO; the window icon should match the thing
# that the user clicks in their OS to start FoFiX.
icon = os.path.join(Version.dataPath(), "fofix_icon.png")

self.video = Video(self.title, icon)
if self.config.get("video", "disable_screensaver"):
Expand Down

0 comments on commit 3ac6029

Please sign in to comment.