diff options
author | vaxerski <[email protected]> | 2023-01-12 13:33:45 +0100 |
---|---|---|
committer | vaxerski <[email protected]> | 2023-01-12 13:33:45 +0100 |
commit | cbd31ba481c5be65e015647851eef4b396869073 (patch) | |
tree | 8d2d01e6e6171232b3d888cbfbbaa1ed849ed73d | |
parent | 8440aa3e9b2682261cf9608e553761ec4cf21654 (diff) | |
download | Hyprland-cbd31ba481c5be65e015647851eef4b396869073.tar.gz Hyprland-cbd31ba481c5be65e015647851eef4b396869073.zip |
damage on border change
-rw-r--r-- | src/debug/HyprCtl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug/HyprCtl.cpp b/src/debug/HyprCtl.cpp index e4139a0c..4db5bafb 100644 --- a/src/debug/HyprCtl.cpp +++ b/src/debug/HyprCtl.cpp @@ -619,7 +619,7 @@ std::string dispatchKeyword(std::string in) { } // decorations will probably need a repaint - if (COMMAND.contains("decoration:")) { + if (COMMAND.contains("decoration:") || COMMAND.contains("border")) { for (auto& m : g_pCompositor->m_vMonitors) g_pHyprRenderer->damageMonitor(m.get()); } |