Change quit keyboard shortcut to allow clipboard

This commit is contained in:
hyugogirubato
2024-07-15 19:19:36 +02:00
parent 4b2c47b4b8
commit 68e843af63
+1 -1
View File
@@ -257,7 +257,7 @@ class Player:
self.root.bind('<Right>', lambda event: self.one_next())
# Bind Ctrl+C to exit application
self.root.bind('<Control-c>', lambda event: self.root.quit())
self.root.bind('<Control-q>', lambda event: self.root.quit())
# Bind the configure event to handle window resize
self.root.bind('<Configure>', lambda event: self.on_window(event))