Gui: Select the VarSet when clicking Std_VarSet

To make clear which VarSet is being added to, the VarSet is being
selected.
This commit is contained in:
Pieter Hijma
2025-09-03 11:27:53 +02:00
parent 550aac53a7
commit 66df6b39c8

View File

@@ -183,6 +183,9 @@ void StdCmdVarSet::activated(int iMsg)
VarSetName = getUniqueObjectName("VarSet");
doCommand(Doc,"App.activeDocument().addObject('App::VarSet','%s')",VarSetName.c_str());
Gui::Document* docGui = Application::Instance->activeDocument();
App::Document* doc = docGui->getDocument();
// add the varset to a group if it is selected
auto sels = Selection().getSelectionEx(nullptr, App::DocumentObject::getClassTypeId(),
ResolveMode::OldStyleElement, true);
@@ -190,11 +193,14 @@ void StdCmdVarSet::activated(int iMsg)
App::DocumentObject* obj = sels[0].getObject();
auto group = obj->getExtension<App::GroupExtension>();
if (group) {
Gui::Document* docGui = Application::Instance->activeDocument();
App::Document* doc = docGui->getDocument();
group->addObject(doc->getObject(VarSetName.c_str()));
}
}
// select the new varset
Selection().clearSelection();
Selection().addSelection(doc->getName(), VarSetName.c_str());
commitCommand();
doCommand(Doc, "App.ActiveDocument.getObject('%s').ViewObject.doubleClicked()", VarSetName.c_str());