Lint against the linter.

Took 3 minutes
This commit is contained in:
Lukas Brübach
2026-01-21 09:39:16 +01:00
parent 60e293dc2d
commit 7927f8a73a

View File

@@ -244,7 +244,8 @@ bool TutorialOverlay::eventFilter(QObject *obj, QEvent *event)
if (obj == targetWidget) {
if (event->type() == QEvent::Show) {
QMetaObject::invokeMethod(this, [this]() { recomputeLayout(); }, Qt::QueuedConnection);
QMetaObject::invokeMethod(
this, [this]() { recomputeLayout(); }, Qt::QueuedConnection);
} else if (event->type() == QEvent::Hide || event->type() == QEvent::Move || event->type() == QEvent::Resize) {
recomputeLayout();
}