From d063ea58a4bb976338e41724ca8a9da54797050c Mon Sep 17 00:00:00 2001 From: wmayer Date: Mon, 1 Apr 2024 19:25:45 +0200 Subject: [PATCH] Gui: Fix Std_LinkActions Currently the active button of the Std_LinkActions command is toggable that is confusing behaviour. This PR makes the action group non-checkable --- src/Gui/CommandLink.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Gui/CommandLink.cpp b/src/Gui/CommandLink.cpp index d5243d5d91..1f9b594eee 100644 --- a/src/Gui/CommandLink.cpp +++ b/src/Gui/CommandLink.cpp @@ -882,6 +882,8 @@ public: eType = AlterDoc; bCanLog = false; + setCheckable(false); + addCommand(new StdCmdLinkMake()); addCommand(new StdCmdLinkMakeRelative()); addCommand(new StdCmdLinkReplace());