develop #1

Merged
itdominator merged 6 commits from develop into master 2024-01-12 01:55:22 +00:00
1 changed files with 4 additions and 1 deletions
Showing only changes of commit 257a368e02 - Show all commits

View File

@ -114,7 +114,10 @@ class EditorEventsMixin:
tab = page.get_tab_widget()
self.detach_tab(page)
notebook.show()
if not notebook.is_visible():
notebook.show()
event_system.emit("update_paned_handle")
notebook.insert_page(page, tab, -1)
self.set_page_focus(page, notebook, self)