We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5713904 commit 679e794Copy full SHA for 679e794
src/Mod/Fem/Gui/Command.cpp
@@ -1703,6 +1703,11 @@ void setupFilter(Gui::Command* cmd, std::string Name)
1703
"App.activeDocument().ActiveObject.ViewObject.VectorMode = \"%s\"",
1704
selObjectView->VectorMode.getValueAsString());
1705
1706
+ // hide selected filter
1707
+ cmd->doCommand(Gui::Command::Doc,
1708
+ "App.activeDocument().%s.ViewObject.Visibility = False",
1709
+ selObject->getNameInDocument());
1710
+
1711
cmd->updateActive();
1712
// open the dialog to edit the filter
1713
cmd->doCommand(Gui::Command::Gui, "Gui.activeDocument().setEdit('%s')", FeatName.c_str());
0 commit comments