From a94b902bef5eef3a4891726d51415c5d2e3391e3 Mon Sep 17 00:00:00 2001 From: Philipp Schilk Date: Thu, 21 Mar 2024 16:18:24 +0100 Subject: [PATCH] windowrules: Fix resizeparams parsing. (#5206) Parsing of resizeparams/relative vec2 did not correctly handle multiple spaces between x and y arguments, causing the following to fail to parse: bind = $mainMod CTRL, h, resizeactive, 10 0 This is unexpected, because most other config values are whitespace insensitive. --- src/Compositor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Compositor.cpp b/src/Compositor.cpp index 3ff67f20..f8138825 100644 --- a/src/Compositor.cpp +++ b/src/Compositor.cpp @@ -2542,7 +2542,7 @@ Vector2D CCompositor::parseWindowVectorArgsRelative(const std::string& args, con bool isExact = false; std::string x = args.substr(0, args.find_first_of(' ')); - std::string y = args.substr(args.find_first_of(' ') + 1); + std::string y = args.substr(args.find_last_of(' ') + 1); if (x == "exact") { x = y.substr(0, y.find_first_of(' '));