Use dynamic properties for NhekoFixupPaletteEventFilter

A new window could have the same `QWindow *` value as an already free'ed window,
so using a `QSet<QWindow *>` with potentially free'ed windows might not be reliable.
Use dynamic properties instead.
pull/1657/head
q234rty 11 months ago
parent fa53b5b5f3
commit 2ced20d755
No known key found for this signature in database
GPG Key ID: D7E83C63C8CC4545
  1. 6
      src/MainWindow.cpp
  2. 3
      src/MainWindow.h

@ -201,14 +201,12 @@ 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))
if (window->property("posted").isValid())
continue;
QGuiApplication::postEvent(window, new QEvent(QEvent::ApplicationPaletteChange));
window->setProperty("posted", true);
}
m_postedWindows.swap(newWindows);
}
return false;
}

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

Loading…
Cancel
Save