From 1cc758778956fd472e3906c88afc5e62438650e1 Mon Sep 17 00:00:00 2001 From: vaxerski Date: Tue, 24 Jan 2023 14:04:01 +0000 Subject: [PATCH] recalculate layout on deco or border change --- src/debug/HyprCtl.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/debug/HyprCtl.cpp b/src/debug/HyprCtl.cpp index 48be1c5c..e2c265bf 100644 --- a/src/debug/HyprCtl.cpp +++ b/src/debug/HyprCtl.cpp @@ -620,8 +620,10 @@ std::string dispatchKeyword(std::string in) { // decorations will probably need a repaint if (COMMAND.contains("decoration:") || COMMAND.contains("border")) { - for (auto& m : g_pCompositor->m_vMonitors) + for (auto& m : g_pCompositor->m_vMonitors) { g_pHyprRenderer->damageMonitor(m.get()); + g_pLayoutManager->getCurrentLayout()->recalculateMonitor(m->ID); + } } Debug::log(LOG, "Hyprctl: keyword %s : %s", COMMAND.c_str(), VALUE.c_str());