From f25e765aa18a02d44ee0b4751e9c660bb966b459 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Insaurralde=20Avalos?= Date: Sun, 25 Jun 2023 13:29:57 -0400 Subject: [PATCH] [skip-ci] Fix #9775 - incorrect pref. path on hint --- src/Gui/Action.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/Gui/Action.cpp b/src/Gui/Action.cpp index 3105ad1ca7..ce4627c612 100644 --- a/src/Gui/Action.cpp +++ b/src/Gui/Action.cpp @@ -1057,9 +1057,11 @@ void RecentMacrosAction::setFiles(const QStringList& files) for (int index = 0; index < existingCommands.count(); index++) { msgMain = msgMain + QStringLiteral(" %1").arg(existingCommands[index]); } - msgMain = msgMain + QStringLiteral(" respectively.\nHint: In Preferences -> Macros -> Recent Macros -> Keyboard Modifiers" - " this should be Ctrl+Shift+ by default, if this is now blank then you should revert" - " it back to Ctrl+Shift+ by pressing both keys at the same time."); + msgMain = msgMain + + QStringLiteral(" respectively.\nHint: In Preferences -> Python -> Macro ->" + " Recent Macros menu -> Keyboard Modifiers this should be Ctrl+Shift+" + " by default, if this is now blank then you should revert it back to" + " Ctrl+Shift+ by pressing both keys at the same time."); Base::Console().Warning("%s\n", qPrintable(msgMain)); } }