Skip to content

Commit a355cb0

Browse files
committed
Set icon ready property.
1 parent 6f9d6e8 commit a355cb0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Diff for: plex_mpv_shim/gui_mgr.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,11 @@ def die():
239239
icon = Icon(APP_NAME, menu=Menu(*menu_items))
240240
icon.icon = Image.open(icon_file)
241241
self.icon_stop = icon.stop
242-
icon.run()
242+
243+
def setup(icon: Icon):
244+
icon.visible = True
245+
246+
icon.run(setup=setup)
243247
self.r_queue.put(("die", None))
244248

245249
userInterface = UserInterface()

0 commit comments

Comments
 (0)