Skip to content
This repository has been archived by the owner on Oct 10, 2024. It is now read-only.

Commit

Permalink
Ignore .ico for linux compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
remisarrailh committed May 24, 2018
1 parent 502f7af commit 199c33a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion modules/Gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ def gui():
# Create interface
bg_grey = "#f3f3f3"
root = Tk()
root.iconbitmap('libreCarrier.ico')
try:
root.iconbitmap('libreCarrier.ico')
except:
pass
root.title("Libre Carrier") #Title
root.configure(background=bg_grey) #Background color
root.protocol("WM_DELETE_WINDOW", quit)
Expand Down

0 comments on commit 199c33a

Please sign in to comment.