Fixed event system logic

This commit is contained in:
2022-01-30 17:19:46 -06:00
parent a78c7e2261
commit 42f2be0602
3 changed files with 6 additions and 3 deletions

View File

@@ -34,7 +34,7 @@ class IPCServerMixin:
if "FILE|" in msg:
file = msg.split("FILE|")[1].strip()
if file:
event_system.push_gui_event(["create_tab_from_ipc", None, file])
event_system.push_gui_event([None, "create_tab_from_ipc", file])
conn.close()
break