diff --git a/oml/ui.py b/oml/ui.py index f9970bf..a15dfac 100644 --- a/oml/ui.py +++ b/oml/ui.py @@ -76,9 +76,9 @@ class GtkUI: class TkUI: def __init__(self): self.root = Tk(className="Open Media Library") - png = os.path.join(os.path.dirname(os.path.abspath('__file__')), 'static', 'png', 'oml.png') - icon = PhotoImage(file=png) - self.root.tk.call('wm', 'iconphoto', self.root._w, icon) + #png = os.path.join(os.path.dirname(os.path.abspath('__file__')), 'static', 'png', 'oml.png') + #icon = PhotoImage(file=png) + #self.root.tk.call('wm', 'iconphoto', self.root._w, icon) self.root.withdraw() # hiding tkinter window if sys.platform == 'darwin': self.root.lift()