From 68e843af63f13d22254566feddc5805653bf0892 Mon Sep 17 00:00:00 2001 From: hyugogirubato <65763543+hyugogirubato@users.noreply.github.com> Date: Mon, 15 Jul 2024 19:19:36 +0200 Subject: [PATCH] Change quit keyboard shortcut to allow clipboard --- cbz/player.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cbz/player.py b/cbz/player.py index 3ffaf52..976384d 100644 --- a/cbz/player.py +++ b/cbz/player.py @@ -257,7 +257,7 @@ class Player: self.root.bind('', lambda event: self.one_next()) # Bind Ctrl+C to exit application - self.root.bind('', lambda event: self.root.quit()) + self.root.bind('', lambda event: self.root.quit()) # Bind the configure event to handle window resize self.root.bind('', lambda event: self.on_window(event))