This commit is contained in:
Mikael Walhelm 2025-03-27 05:25:17 -04:00 committed by GitHub
commit 01b6432de0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,24 +7,13 @@
struct cmd_results *cmd_titlebar_padding(int argc, char **argv) {
struct cmd_results *error = NULL;
if ((error = checkarg(argc, "titlebar_padding", EXPECTED_AT_LEAST, 1))) {
return error;
}
char *inv;
int h_value = strtol(argv[0], &inv, 10);
if (*inv != '\0' || h_value < 0 || h_value < config->titlebar_border_thickness) {
return cmd_results_new(CMD_FAILURE, "Invalid size specified");
}
int v_value;
if (argc == 1) {
v_value = h_value;
} else {
v_value = strtol(argv[1], &inv, 10);
if (*inv != '\0' || v_value < 0 || v_value < config->titlebar_border_thickness) {
return cmd_results_new(CMD_FAILURE, "Invalid size specified");
}
}
config->titlebar_v_padding = v_value;