From c0933bffcf0394f7701ab134f6c308eaa9584bee Mon Sep 17 00:00:00 2001 From: Maximilian Seidler <78690852+PointerDilemma@users.noreply.github.com> Date: Sun, 3 May 2026 16:30:21 +0200 Subject: [PATCH] compositor: move SessionLockManager init from STAGE_LATE to STAGE_BASICINIT (#14272) --- src/Compositor.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Compositor.cpp b/src/Compositor.cpp index ab371df22..b5dba342e 100644 --- a/src/Compositor.cpp +++ b/src/Compositor.cpp @@ -673,6 +673,9 @@ void CCompositor::initManagers(eManagersInitStage stage) { Log::logger->log(Log::DEBUG, "Creating the SeatManager!"); g_pSeatManager = makeUnique(); + Log::logger->log(Log::DEBUG, "Creating the SessionLockManager!"); + g_pSessionLockManager = makeUnique(); + // init focus state els Desktop::History::windowTracker(); Desktop::History::workspaceTracker(); @@ -688,9 +691,6 @@ void CCompositor::initManagers(eManagersInitStage stage) { Log::logger->log(Log::DEBUG, "Creating the XWaylandManager!"); g_pXWaylandManager = makeUnique(); - Log::logger->log(Log::DEBUG, "Creating the SessionLockManager!"); - g_pSessionLockManager = makeUnique(); - Log::logger->log(Log::DEBUG, "Creating the Debug Overlay!"); Debug::overlay();