diff options
author | Vaxry <[email protected]> | 2024-06-11 17:17:45 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2024-06-11 17:17:45 +0200 |
commit | 8c64a4bad710fb18e9b84812bd680a89d1e93661 (patch) | |
tree | 2439b8408abd8e14f6af35ef9cfbeb7c51429f99 /src/events | |
parent | 1f46296ea05f9a8e6020ab694b531c91a1abdfa6 (diff) | |
download | Hyprland-8c64a4bad710fb18e9b84812bd680a89d1e93661.tar.gz Hyprland-8c64a4bad710fb18e9b84812bd680a89d1e93661.zip |
core: move to hyprutils for utils (#6385)
* core: move to hyprutils for utils
Nix: add hyprutils dep
* Meson: add hyprutils dep
* flake.lock: update
---------
Co-authored-by: Mihai Fufezan <[email protected]>
Diffstat (limited to 'src/events')
-rw-r--r-- | src/events/Windows.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/events/Windows.cpp b/src/events/Windows.cpp index 88b28c87..899318ce 100644 --- a/src/events/Windows.cpp +++ b/src/events/Windows.cpp @@ -12,6 +12,9 @@ #include "../protocols/core/Compositor.hpp" #include "../xwayland/XSurface.hpp" +#include <hyprutils/string/String.hpp> +using namespace Hyprutils::String; + // ------------------------------------------------------------ // // __ _______ _ _ _____ ______ _______ // // \ \ / /_ _| \ | | __ \ / __ \ \ / / ____| // @@ -140,7 +143,7 @@ void Events::listener_mapWindow(void* owner, void* data) { for (auto& r : PWINDOW->m_vMatchedRules) { if (r.szRule.starts_with("monitor")) { try { - const auto MONITORSTR = removeBeginEndSpacesTabs(r.szRule.substr(r.szRule.find(' '))); + const auto MONITORSTR = trim(r.szRule.substr(r.szRule.find(' '))); if (MONITORSTR == "unset") { PWINDOW->m_iMonitorID = PMONITOR->ID; @@ -235,7 +238,7 @@ void Events::listener_mapWindow(void* owner, void* data) { continue; // `group` is a shorthand of `group set` - if (removeBeginEndSpacesTabs(r.szRule) == "group") { + if (trim(r.szRule) == "group") { PWINDOW->m_eGroupRules |= GROUP_SET; continue; } |