mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-09 21:55:29 +02:00
Avoid flicker when starting kittens such as the hints kitten
Fixes #4674
This commit is contained in:
@@ -940,6 +940,13 @@ class Window:
|
||||
import base64
|
||||
self.kitten_result: Dict[str, Any] = json.loads(base64.b85decode(msg))
|
||||
|
||||
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)
|
||||
|
||||
def handle_remote_askpass(self, msg: str) -> None:
|
||||
from .shm import SharedMemory
|
||||
with SharedMemory(name=msg, readonly=True) as shm:
|
||||
|
||||
Reference in New Issue
Block a user