Trigger less QEvent::ApplicationPaletteChange
The event seems to be very expensive on certain platform theme plugins. Fixes #1639
This commit is contained in:
parent
021eed8388
commit
d372158dde
2 changed files with 8 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue