From 13cf9a9fdbb2d95c9741a307369399f528e53981 Mon Sep 17 00:00:00 2001 From: Roy-043 Date: Sun, 7 May 2023 12:20:56 +0200 Subject: [PATCH] Sketcher: improve context menu text for Sketcher_ToggleConstruction In the Elements context menu (Sketcher task panel) the menu text for Sketcher_ToggleConstruction is "Toggle construction line", this should be "Toggle construction geometry". It is not just lines that can be toggled, and this is also the menu text in the main Sketcher menu. --- src/Mod/Sketcher/Gui/TaskSketcherElements.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Sketcher/Gui/TaskSketcherElements.cpp b/src/Mod/Sketcher/Gui/TaskSketcherElements.cpp index dc8e52e1f4..33721faebc 100644 --- a/src/Mod/Sketcher/Gui/TaskSketcherElements.cpp +++ b/src/Mod/Sketcher/Gui/TaskSketcherElements.cpp @@ -484,7 +484,7 @@ void ElementView::contextMenuEvent (QContextMenuEvent* event) menu.addSeparator(); - CONTEXT_ITEM("Sketcher_ToggleConstruction","Toggle construction line","Sketcher_ToggleConstruction",doToggleConstruction,true) + CONTEXT_ITEM("Sketcher_ToggleConstruction","Toggle construction geometry","Sketcher_ToggleConstruction",doToggleConstruction,true) menu.addSeparator();