root: recreate the qml engine on reload instead of clearing it

This causes singletons to be recreated instead of kept alive.
This commit is contained in:
outfoxxed 2024-03-12 14:55:51 -07:00
parent 9f6ef37f61
commit 463f9a297f
Signed by untrusted user: outfoxxed
GPG key ID: 4C88A185FB89301E
9 changed files with 109 additions and 78 deletions

View file

@ -78,7 +78,8 @@ void WlSessionLock::updateSurfaces(WlSessionLock* old) {
auto* instance = qobject_cast<WlSessionLockSurface*>(instanceObj);
if (instance == nullptr) {
qWarning() << "WlSessionLock.surface does not create a WlSessionLockSurface. Aborting lock.";
qWarning(
) << "WlSessionLock.surface does not create a WlSessionLockSurface. Aborting lock.";
if (instanceObj != nullptr) instanceObj->deleteLater();
this->unlock();
return;

View file

@ -26,7 +26,7 @@ enum Enum {
};
Q_ENUM_NS(Enum);
} // namespace Layer
} // namespace WlrLayer
///! WlrLayershell keyboard focus mode
namespace WlrKeyboardFocus { // NOLINT
@ -47,7 +47,7 @@ enum Enum {
};
Q_ENUM_NS(Enum);
} // namespace KeyboardFocus
} // namespace WlrKeyboardFocus
class QSWaylandLayerSurface;