summaryrefslogtreecommitdiff
path: root/__main__.py
diff options
context:
space:
mode:
Diffstat (limited to '__main__.py')
-rwxr-xr-x__main__.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/__main__.py b/__main__.py
index 9e15e4a..bd116bf 100755
--- a/__main__.py
+++ b/__main__.py
@@ -719,8 +719,13 @@ root=tk.Tk()
root.title("Mana Launcher (tk)")
## Initialize the images
-_cog_png = tk.PhotoImage(file = "cog.png")
-_favicon = tk.PhotoImage(file = "favicon.png")
+try:
+ _cog_png = tk.PhotoImage(file = "cog.png")
+ _favicon = tk.PhotoImage(file = "favicon.png")
+except:
+ from _img import __cog, __favicon
+ _cog_png = tk.PhotoImage(data = __cog)
+ _favicon = tk.PhotoImage(data = __favicon)
root.iconphoto(True, _favicon)
canva = tk.Canvas(root, width=400, height=600, bg="#0c3251")