From 3df7bb34bfbc1c6c152a8be1262ed0fbad23e42d Mon Sep 17 00:00:00 2001 From: FEA-eng <59876896+FEA-eng@users.noreply.github.com> Date: Mon, 8 Sep 2025 19:35:22 +0200 Subject: [PATCH] Update CommandFilter.cpp --- src/Mod/Part/Gui/CommandFilter.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Mod/Part/Gui/CommandFilter.cpp b/src/Mod/Part/Gui/CommandFilter.cpp index 23a61d7489..4497727b87 100644 --- a/src/Mod/Part/Gui/CommandFilter.cpp +++ b/src/Mod/Part/Gui/CommandFilter.cpp @@ -182,7 +182,7 @@ PartCmdVertexSelection::PartCmdVertexSelection() void PartCmdVertexSelection::activated(int iMsg) { Q_UNUSED(iMsg); - doCommand(Command::Gui,"Gui.Selection.addSelectionGate('SELECT Part::Feature SUBELEMENT Vertex')"); + doCommand(Command::Gui,"Gui.Selection.addSelectionGate('SELECT Part::Feature SUBELEMENT Vertex SELECT App::Link SUBELEMENT Vertex')"); } @@ -207,7 +207,7 @@ PartCmdEdgeSelection::PartCmdEdgeSelection() void PartCmdEdgeSelection::activated(int iMsg) { Q_UNUSED(iMsg); - doCommand(Command::Gui,"Gui.Selection.addSelectionGate('SELECT Part::Feature SUBELEMENT Edge')"); + doCommand(Command::Gui,"Gui.Selection.addSelectionGate('SELECT Part::Feature SUBELEMENT Edge SELECT App::Link SUBELEMENT Edge')"); } @@ -232,7 +232,7 @@ PartCmdFaceSelection::PartCmdFaceSelection() void PartCmdFaceSelection::activated(int iMsg) { Q_UNUSED(iMsg); - doCommand(Command::Gui,"Gui.Selection.addSelectionGate('SELECT Part::Feature SUBELEMENT Face')"); + doCommand(Command::Gui,"Gui.Selection.addSelectionGate('SELECT Part::Feature SUBELEMENT Face SELECT App::Link SUBELEMENT Face')"); }