1
0
Fork 0

give the Multiverseview to each UniverseView as parent

This commit is contained in:
Kevin Matz 2022-11-21 12:40:31 -05:00
parent b0a16a8cb7
commit 07cc2e1c0a
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ void MultiverseView::createEditor(const QModelIndex &index)
if (data.metaType().id() == qMetaTypeId<QSacnUniverse*>())
{
auto univ = data.value<QSacnUniverse*>();
auto universeView = new UniverseView(nullptr, univ);
auto universeView = new UniverseView(this, univ);
universeView->show();
}