1
0
Fork 0
mirror of https://github.com/hyprwm/Hyprland synced 2025-03-02 17:02:44 +01:00

eventloop: dispatch pending in session on start

fixes  
This commit is contained in:
Vaxry 2024-09-24 00:49:29 +01:00
parent 6c78b03bb7
commit d279d7c4c6

View file

@ -50,6 +50,10 @@ void CEventLoopManager::enterLoop() {
m_sWayland.aqEventSources.emplace_back(wl_event_loop_add_fd(m_sWayland.loop, fd->fd, WL_EVENT_READABLE, aquamarineFDWrite, fd.get()));
}
// if we have a session, dispatch it to get the pending input devices
if (g_pCompositor->m_pAqBackend->hasSession())
g_pCompositor->m_pAqBackend->session->dispatchPendingEventsAsync();
wl_display_run(m_sWayland.display);
Debug::log(LOG, "Kicked off the event loop! :(");