This commit is contained in:
Kovid Goyal
2022-03-23 16:04:01 +05:30
parent 6dc1617429
commit adcc616c92
2 changed files with 2 additions and 4 deletions

View File

@@ -943,9 +943,8 @@ class Window:
def handle_overlay_ready(self, msg: str) -> None:
boss = get_boss()
tab = boss.tab_for_window(self)
if tab is None:
return
tab.move_window_to_top_of_group(self)
if tab is not None:
tab.move_window_to_top_of_group(self)
def handle_remote_askpass(self, msg: str) -> None:
from .shm import SharedMemory