From 4a9b84a2c680f41fcf7c92e6d1e90c6bacd904bc Mon Sep 17 00:00:00 2001 From: itdominator <1itdominator@gmail.com> Date: Fri, 22 May 2026 20:35:06 -0500 Subject: [PATCH] Fixed file to ipc as args --- src/core/controllers/base_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/controllers/base_controller.py b/src/core/controllers/base_controller.py index 28e985e..3b92f57 100644 --- a/src/core/controllers/base_controller.py +++ b/src/core/controllers/base_controller.py @@ -81,7 +81,7 @@ class BaseController(IPCSignalsMixin, KeyboardSignalsMixin, BaseControllerMixin) def _load_files(self): for file in settings_manager.get_starting_files(): - event_system.emit("post-file-to-ipc", file) + event_system.emit("post-file-to-ipc", f"FILE|{file}") def _tggl_top_main_menubar(self): logger.debug("_tggl_top_main_menubar > stub...")