[skip-ci] Fix #9775 - incorrect pref. path on hint

This commit is contained in:
Adrián Insaurralde Avalos
2023-06-25 13:29:57 -04:00
committed by Adrián Insaurralde Avalos
parent a3d445e1c9
commit f25e765aa1

View File

@@ -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));
}
}