From fe085edd79f48150122f1771c1fa694d64bddf70 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 fb12f727dd..c003fb3ef9 100644 --- a/src/Gui/propertyeditor/PropertyEditor.cpp +++ b/src/Gui/propertyeditor/PropertyEditor.cpp @@ -747,6 +747,7 @@ void PropertyEditor::contextMenuEvent(QContextMenuEvent *) { case MA_Expression: if(contextIndex == currentIndex()) { Base::FlagToggler<> flag(binding); + closeEditor(); openEditor(contextIndex); } break;