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());