mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-13 02:05:59 +01:00
dont cycle on fullscreen
This commit is contained in:
parent
aac546b771
commit
edcecae7a0
1 changed files with 5 additions and 0 deletions
|
@ -1047,6 +1047,11 @@ void CKeybindManager::circleNext(std::string arg) {
|
|||
if (!g_pCompositor->windowValidMapped(g_pCompositor->m_pLastWindow))
|
||||
return;
|
||||
|
||||
const auto PWORKSPACE = g_pCompositor->getWorkspaceByID(g_pCompositor->m_pLastWindow->m_iWorkspaceID);
|
||||
|
||||
if (PWORKSPACE->m_bHasFullscreenWindow)
|
||||
return;
|
||||
|
||||
if (arg == "last" || arg == "l" || arg == "prev" || arg == "p")
|
||||
g_pCompositor->focusWindow(g_pCompositor->getPrevWindowOnWorkspace(g_pCompositor->m_pLastWindow));
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue