Skip to content

Commit

Permalink
fix Qt bug
Browse files Browse the repository at this point in the history
  • Loading branch information
LostRobotMusic committed Dec 20, 2023
1 parent 834e35b commit 40aba80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/modals/EffectSelectDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ void EffectSelectDialog::rowChanged(const QModelIndex& _idx, const QModelIndex&)
if (w->parent() == subWidget)
{
subLayout->addWidget(w);
subLayout->setAlignment(w, Qt::AlignTop | Qt::AlignLeft);
subLayout->setAlignment(w, QFlags<Qt::AlignmentFlag>(Qt::AlignTop | Qt::AlignLeft));
}
}
textWidgetLayout->addWidget(subWidget);
Expand Down

0 comments on commit 40aba80

Please sign in to comment.