Fixed ipc new tab

This commit is contained in:
itdominator 2022-03-13 18:53:43 -05:00
parent 1fc1609b0a
commit 22c9fa301b
1 changed files with 7 additions and 7 deletions

View File

@ -13,17 +13,17 @@ class IPCSignalsMixin:
print(message)
def handle_file_from_ipc(self, path):
wid, tid = self.fm_controller.get_active_wid_and_tid()
notebook = self.builder.get_object(f"window_{wid}")
wid, tid = self.fm_controller.get_active_wid_and_tid()
notebook = self.builder.get_object(f"window_{wid}")
if notebook.is_visible():
self.create_tab(wid, path)
self.create_tab(wid, None, path)
return
if not self.is_pane4_hidden:
self.create_tab(4, path)
self.create_tab(4, None, path)
elif not self.is_pane3_hidden:
self.create_tab(3, path)
self.create_tab(3, None, path)
elif not self.is_pane2_hidden:
self.create_tab(2, path)
self.create_tab(2, None, path)
elif not self.is_pane1_hidden:
self.create_tab(1, path)
self.create_tab(1, None, path)