From 285fc1065fb1d8a23927fb67690ca5652ba43baf Mon Sep 17 00:00:00 2001 From: 0penBrain <48731257+0penBrain@users.noreply.github.com> Date: Wed, 31 Aug 2022 11:43:12 +0200 Subject: [PATCH] [Bugfix]Gui: allow set up expression even if property value is currently being edited --- src/Gui/propertyeditor/PropertyEditor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Gui/propertyeditor/PropertyEditor.cpp b/src/Gui/propertyeditor/PropertyEditor.cpp index e256a232d9..9e30f98e39 100644 --- a/src/Gui/propertyeditor/PropertyEditor.cpp +++ b/src/Gui/propertyeditor/PropertyEditor.cpp @@ -748,6 +748,7 @@ void PropertyEditor::contextMenuEvent(QContextMenuEvent *) { case MA_Expression: if(contextIndex == currentIndex()) { Base::FlagToggler<> flag(binding); + closeEditor(); openEditor(contextIndex); } break;