fix: discard key input in entry field

This commit is contained in:
aclist 2025-08-08 18:01:05 +09:00
parent 9c6847ba39
commit 5b9309a6bd

View File

@ -1201,6 +1201,8 @@ class RightPanel(Gtk.Box):
self.filters_vbox.set_unique_maps(rows)
def toggle_debug(self) -> None:
if type(App.window.get_focus()) is Gtk.Entry:
return
state = self.debug_toggle.get_active()
self.debug_toggle.set_active(not state)