Skip to content
Snippets Groups Projects
Commit 6ea51587 authored by Matthias Puchner's avatar Matthias Puchner
Browse files

add btn to show a particle composition in real space view

parent 62e072d9
No related branches found
No related tags found
1 merge request!447Real space for layer editor
......@@ -47,6 +47,10 @@ ParticleCompositionForm::ParticleCompositionForm(QWidget* parent,
auto* collapser = GroupBoxCollapser::installIntoGroupBox(this);
auto* showInRealSpaceAction = ActionFactory::createShowInRealSpaceAction(
this, "particle composition", [=] { ec->requestViewInRealSpace(compositionItem); });
collapser->addAction(showInRealSpaceAction);
if (allowRemove) {
m_removeAction = ActionFactory::createRemoveAction(
this, "particle composition", [=] { ec->removeParticle(compositionItem); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment