diff --git a/src/Mod/Fem/Gui/ViewProviderAnalysis.cpp b/src/Mod/Fem/Gui/ViewProviderAnalysis.cpp index 4ca5f78820..7b8a387cc5 100644 --- a/src/Mod/Fem/Gui/ViewProviderAnalysis.cpp +++ b/src/Mod/Fem/Gui/ViewProviderAnalysis.cpp @@ -114,6 +114,9 @@ bool ViewProviderFemAnalysis::doubleClicked(void) Gui::Command::doCommand(Gui::Command::Gui, "FemGui.setActiveAnalysis(App.activeDocument().%s)", this->getObject()->getNameInDocument()); + // After activation of the analysis the allowed FEM toolbar buttons should become active. + // To achieve this we must clear the object selection to trigger the selection observer. + Gui::Command::doCommand(Gui::Command::Gui, "Gui.Selection.clearSelection()"); return true; }