From 32fb44439dfe7d52817a62f948c61e2f51656f26 Mon Sep 17 00:00:00 2001 From: Keith Edmunds Date: Thu, 23 Sep 2021 08:07:38 +0100 Subject: [PATCH] Change force play next keyboard shortcut Now control-alt-return to prevent muscle memory typing control-return Fixes #76 --- app/ui/main_window.ui | 2 +- app/ui/main_window_ui.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/ui/main_window.ui b/app/ui/main_window.ui index 21d7660..836b77d 100644 --- a/app/ui/main_window.ui +++ b/app/ui/main_window.ui @@ -836,7 +836,7 @@ border: 1px solid rgb(85, 87, 83); Skip to &next - Ctrl+Return + Ctrl+Alt+Return diff --git a/app/ui/main_window_ui.py b/app/ui/main_window_ui.py index 0ae799d..a9b5245 100644 --- a/app/ui/main_window_ui.py +++ b/app/ui/main_window_ui.py @@ -514,7 +514,7 @@ class Ui_MainWindow(object): self.actionPlay_next.setText(_translate("MainWindow", "&Play next")) self.actionPlay_next.setShortcut(_translate("MainWindow", "Return")) self.actionSkip_next.setText(_translate("MainWindow", "Skip to &next")) - self.actionSkip_next.setShortcut(_translate("MainWindow", "Ctrl+Return")) + self.actionSkip_next.setShortcut(_translate("MainWindow", "Ctrl+Alt+Return")) self.actionSearch_database.setText(_translate("MainWindow", "Search &database")) self.actionSearch_database.setShortcut(_translate("MainWindow", "Ctrl+D")) self.actionAdd_file.setText(_translate("MainWindow", "Add &file"))