mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-08-05 22:51:58 -07:00
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.
This commit is contained in:
@@ -2542,7 +2542,7 @@ Vector2D CCompositor::parseWindowVectorArgsRelative(const std::string& args, con
|
|||||||
bool isExact = false;
|
bool isExact = false;
|
||||||
|
|
||||||
std::string x = args.substr(0, args.find_first_of(' '));
|
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") {
|
if (x == "exact") {
|
||||||
x = y.substr(0, y.find_first_of(' '));
|
x = y.substr(0, y.find_first_of(' '));
|
||||||
|
Reference in New Issue
Block a user