From 8e8bad8ee6bed3cd99d6856d52889ad18375032f Mon Sep 17 00:00:00 2001 From: Snow Faerie Date: Fri, 19 Jul 2024 23:00:52 +0200 Subject: [PATCH] Add shortcut: Ctrl+,: Preferences FreeCAD doesn't have a shortcut for Preferences. As far as I know there is no established standard for Preferences. I chose Ctrl+, as that is used by a number of applications, like VS Code, nautilus and gedit. --- src/Gui/CommandStd.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Gui/CommandStd.cpp b/src/Gui/CommandStd.cpp index e0fa98730e..141c5e6185 100644 --- a/src/Gui/CommandStd.cpp +++ b/src/Gui/CommandStd.cpp @@ -409,6 +409,7 @@ StdCmdDlgPreferences::StdCmdDlgPreferences() sStatusTip = QT_TR_NOOP("Opens a Dialog to edit the preferences"); sPixmap = "preferences-system"; eType = 0; + sAccel = "Ctrl+,"; } Action * StdCmdDlgPreferences::createAction()