use last monitor and not cursor in map

This commit is contained in:
vaxerski 2022-03-30 19:34:57 +02:00
parent d72fe354fc
commit e49657f0f9
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ void addViewCoords(void* pWindow, int* x, int* y) {
void Events::listener_mapWindow(void* owner, void* data) {
CWindow* PWINDOW = (CWindow*)owner;
const auto PMONITOR = g_pCompositor->getMonitorFromCursor();
const auto PMONITOR = g_pCompositor->m_pLastMonitor;
PWINDOW->m_iMonitorID = PMONITOR->ID;
PWINDOW->m_bMappedX11 = true;
PWINDOW->m_iWorkspaceID = PMONITOR->activeWorkspace;