From b77ab713b318fcd52fe844b4a33ea0a967cbfac1 Mon Sep 17 00:00:00 2001 From: Paddle Date: Wed, 20 Sep 2023 12:15:40 +0200 Subject: [PATCH] Give std_SelBack and std_selforward proper names and tooltips. --- src/Gui/CommandView.cpp | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/Gui/CommandView.cpp b/src/Gui/CommandView.cpp index 2ad6a44e85..340133120c 100644 --- a/src/Gui/CommandView.cpp +++ b/src/Gui/CommandView.cpp @@ -3577,10 +3577,12 @@ StdCmdSelBack::StdCmdSelBack() :Command("Std_SelBack") { sGroup = "View"; - sMenuText = QT_TR_NOOP("&Back"); - sToolTipText = QT_TR_NOOP("Go back to previous selection"); + sMenuText = QT_TR_NOOP("Selection Back"); + sToolTipText = QT_TR_NOOP("

The Std SelBack command restores the previous" + " recorded Tree view selection. Note that selections are only recorded if" + " Tree RecordSelection mode is switched on.

"); sWhatsThis = "Std_SelBack"; - sStatusTip = QT_TR_NOOP("Go back to previous selection"); + sStatusTip = sToolTipText; sPixmap = "sel-back"; sAccel = "S, B"; eType = AlterSelection; @@ -3607,10 +3609,12 @@ StdCmdSelForward::StdCmdSelForward() :Command("Std_SelForward") { sGroup = "View"; - sMenuText = QT_TR_NOOP("&Forward"); - sToolTipText = QT_TR_NOOP("Repeat the backed selection"); + sMenuText = QT_TR_NOOP("Selection Forward"); + sToolTipText = QT_TR_NOOP("

The Std SelForward command restores the next " + "recorded Tree view selection. Note that selections are only recorded if " + "Tree RecordSelection mode is switched on.

"); sWhatsThis = "Std_SelForward"; - sStatusTip = QT_TR_NOOP("Repeat the backed selection"); + sStatusTip = sToolTipText; sPixmap = "sel-forward"; sAccel = "S, F"; eType = AlterSelection;