From 0a046bf936dbfa20d81ca9bbc68927ef9488614c Mon Sep 17 00:00:00 2001 From: pax Date: Sat, 11 Apr 2026 22:18:34 -0500 Subject: [PATCH] main_window: remove Ctrl+S and Ctrl+D menu shortcuts Ctrl+S (Manage Sites) and Ctrl+D (Batch Download) violate platform conventions where these keys mean Save and Bookmark respectively. Menu items remain accessible via File menu. behavior change: Ctrl+S and Ctrl+D no longer trigger actions. --- booru_viewer/gui/main_window.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/booru_viewer/gui/main_window.py b/booru_viewer/gui/main_window.py index eee33f7..bdd1472 100644 --- a/booru_viewer/gui/main_window.py +++ b/booru_viewer/gui/main_window.py @@ -488,7 +488,6 @@ class BooruApp(QMainWindow): file_menu = menu.addMenu("&File") sites_action = QAction("&Manage Sites...", self) - sites_action.setShortcut(QKeySequence("Ctrl+S")) sites_action.triggered.connect(self._open_site_manager) file_menu.addAction(sites_action) @@ -500,7 +499,6 @@ class BooruApp(QMainWindow): file_menu.addSeparator() self._batch_action = QAction("Batch &Download Page...", self) - self._batch_action.setShortcut(QKeySequence("Ctrl+D")) self._batch_action.triggered.connect(self._post_actions.batch_download) file_menu.addAction(self._batch_action)