mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-08 18:45:57 +01:00
don't recalc pseudo on fullscreen
This commit is contained in:
parent
ef3eb37c7f
commit
37f2e1ddbe
1 changed files with 2 additions and 1 deletions
|
@ -551,7 +551,8 @@ void CKeybindManager::toggleActivePseudo(std::string args) {
|
|||
|
||||
ACTIVEWINDOW->m_bIsPseudotiled = !ACTIVEWINDOW->m_bIsPseudotiled;
|
||||
|
||||
g_pLayoutManager->getCurrentLayout()->recalculateWindow(ACTIVEWINDOW);
|
||||
if (!ACTIVEWINDOW->m_bIsFullscreen)
|
||||
g_pLayoutManager->getCurrentLayout()->recalculateWindow(ACTIVEWINDOW);
|
||||
}
|
||||
|
||||
void CKeybindManager::changeworkspace(std::string args) {
|
||||
|
|
Loading…
Reference in a new issue