diff options
author | uint23 <[email protected]> | 2025-04-29 20:20:13 +0100 |
---|---|---|
committer | uint23 <[email protected]> | 2025-04-29 20:20:13 +0100 |
commit | 2852bd9757a5e72ba6b6944589c890dbc11d5946 (patch) | |
tree | 837529c5b6e7332bda5ff8c95d28279dc0a8ecb0 /src/parser.c | |
parent | 5eb226d371222ae219756e489f1e988ae06cd4ef (diff) |
bruh bruh forgot to set master_width to motion throttle bruh.... also updated tile function!
Diffstat (limited to 'src/parser.c')
-rw-r--r-- | src/parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.c b/src/parser.c index b5dc86b..d2efba7 100644 --- a/src/parser.c +++ b/src/parser.c @@ -160,7 +160,7 @@ handler(char *command, char *arg, int mods, KeySym keysym, Action action, else if (strcmp(command, "unfocused_border_colour") == 0) user_config->border_ufoc_col = parse_col(arg); else if (strcmp(command, "swap_border_colour") == 0) user_config->border_swap_col = parse_col(arg); else if (strcmp(command, "master_width") == 0) user_config->master_width = atoi(arg) / 100.0f; - else if (strcmp(command, "motion_throttle") == 0) user_config->master_width = atoi(arg); + else if (strcmp(command, "motion_throttle") == 0) user_config->motion_throttle = atoi(arg); else if (strcmp(command, "resize_master_amount") == 0) user_config->resize_master_amt = atoi(arg); else if (strcmp(command, "snap_distance") == 0) user_config->snap_distance = atoi(arg); else if (strcmp(command, "mod_key") == 0) user_config->modkey = parse_mods(arg, user_config); |