keybinds: implement pushactivetobottom dispacher (#3217)

Co-authored-by: Leeman <lstrout@enlj.com>
This commit is contained in:
alaricljs
2023-09-21 17:18:26 -04:00
committed by GitHub
parent d41a91e050
commit e4ddfcfa0c
9 changed files with 79 additions and 36 deletions

View File

@@ -600,7 +600,7 @@ void CInputManager::processMouseDownNormal(wlr_pointer_button_event* e) {
// if clicked on a floating window make it top
if (g_pCompositor->m_pLastWindow && g_pCompositor->m_pLastWindow->m_bIsFloating)
g_pCompositor->moveWindowToTop(g_pCompositor->m_pLastWindow);
g_pCompositor->changeWindowZOrder(g_pCompositor->m_pLastWindow, true);
break;
case WLR_BUTTON_RELEASED: break;