Trigger less QEvent::ApplicationPaletteChange

The event seems to be very expensive on certain platform theme plugins.

Fixes #1639
pull/1640/head
q234rty 1 year ago
parent 021eed8388
commit d372158dde
No known key found for this signature in database
GPG Key ID: D7E83C63C8CC4545
  1. 5
      src/MainWindow.cpp
  2. 3
      src/MainWindow.h

@ -201,9 +201,14 @@ NhekoFixupPaletteEventFilter::eventFilter(QObject *obj, QEvent *event)
// reason?!?
if (event->type() == QEvent::ChildAdded &&
obj->metaObject()->className() == QStringLiteral("QQuickRootItem")) {
QSet<QWindow *> newWindows;
for (const auto window : QGuiApplication::topLevelWindows()) {
newWindows.insert(window);
if (m_postedWindows.contains(window))
continue;
QGuiApplication::postEvent(window, new QEvent(QEvent::ApplicationPaletteChange));
}
m_postedWindows.swap(newWindows);
}
return false;
}

@ -45,6 +45,9 @@ public:
}
bool eventFilter(QObject *obj, QEvent *event) override;
private:
QSet<QWindow *> m_postedWindows;
};
class MainWindow : public QQuickView

Loading…
Cancel
Save