mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 13:04:11 +01:00
Don't allow negative gaps
This commit is contained in:
parent
415a48ac63
commit
bb708d0f82
@ -68,6 +68,9 @@ static struct cmd_results *gaps_set_defaults(int argc, char **argv) {
|
|||||||
return cmd_results_new(CMD_INVALID, "gaps",
|
return cmd_results_new(CMD_INVALID, "gaps",
|
||||||
"Expected 'gaps inner|outer <px>'");
|
"Expected 'gaps inner|outer <px>'");
|
||||||
}
|
}
|
||||||
|
if (amount < 0) {
|
||||||
|
amount = 0;
|
||||||
|
}
|
||||||
|
|
||||||
if (inner) {
|
if (inner) {
|
||||||
config->gaps_inner = amount;
|
config->gaps_inner = amount;
|
||||||
@ -92,6 +95,9 @@ static void configure_gaps(struct sway_workspace *ws, void *_data) {
|
|||||||
*prop -= data->amount;
|
*prop -= data->amount;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
if (*prop < 0) {
|
||||||
|
*prop = 0;
|
||||||
|
}
|
||||||
arrange_workspace(ws);
|
arrange_workspace(ws);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user