From 1ad4eef455bd2f1b8712fd9b1dfb6ec662d00b23 Mon Sep 17 00:00:00 2001 From: Syres916 <46537884+Syres916@users.noreply.github.com> Date: Thu, 23 Feb 2023 14:06:04 +0000 Subject: [PATCH] [Gui] Recent macros, improve wording of Hint msg --- src/Gui/Action.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Gui/Action.cpp b/src/Gui/Action.cpp index da90463078..a08e69d193 100644 --- a/src/Gui/Action.cpp +++ b/src/Gui/Action.cpp @@ -1200,12 +1200,13 @@ void RecentMacrosAction::setFiles(const QStringList& files) for (int index = 0; index < accel_col.count(); index++) { msgMain = msgMain + QStringLiteral(" %1").arg(accel_col[index]); } - msgMain = msgMain + QStringLiteral(" disabled because conflicting with"); + msgMain = msgMain + QStringLiteral(" disabled because of conflicts with"); 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" - " contains Ctrl+Shift+ as default, this may have been changed unintentionally."); + " 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)); } }