aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMightyPlaza <[email protected]>2023-12-30 15:59:01 +0000
committerGitHub <[email protected]>2023-12-30 16:59:01 +0100
commit94d6b2d2c12663efe90f6d0410528b0d7bcc671e (patch)
tree4d06528863d4ea6adda4b628f2dacc43ac302520
parent33fe3a2e7fcb84e671bc7b5bc5fabcafb8fc1832 (diff)
downloadHyprland-94d6b2d2c12663efe90f6d0410528b0d7bcc671e.tar.gz
Hyprland-94d6b2d2c12663efe90f6d0410528b0d7bcc671e.zip
deco: fix missing border on togglefloating (#4305)
modified: src/managers/KeybindManager.cpp
-rw-r--r--src/managers/KeybindManager.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/managers/KeybindManager.cpp b/src/managers/KeybindManager.cpp
index 23478a10..fc3fcf0d 100644
--- a/src/managers/KeybindManager.cpp
+++ b/src/managers/KeybindManager.cpp
@@ -751,6 +751,7 @@ void CKeybindManager::toggleActiveFloating(std::string args) {
while (curr != PCURRENT) {
curr->m_bIsFloating = PCURRENT->m_bIsFloating;
curr->updateDynamicRules();
+ curr->updateSpecialRenderData();
curr = curr->m_sGroupData.pNextWindow;
}
} else {