From 13483274148f878879217cdaca85d052e065f865 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 10 Aug 2022 20:36:15 +0530 Subject: [PATCH] Pressing esc for the permission dialog should be same as reject this request --- kitty/boss.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kitty/boss.py b/kitty/boss.py index 6a13ce15d..7e77ef3e1 100644 --- a/kitty/boss.py +++ b/kitty/boss.py @@ -506,6 +506,7 @@ class Boss: ) response: RCResponse = None window = self.window_id_map.get(window_id) + choice = choice or 'r' if choice in ('r', 'd'): if choice == 'd': set_user_password_allowed(pcmd['password'], False)