mirror of
https://github.com/swaywm/sway.git
synced 2026-05-04 06:46:25 -04:00
Fix tabbing
This commit is contained in:
parent
81a456d68d
commit
02599f6402
5 changed files with 149 additions and 150 deletions
|
|
@ -23,6 +23,5 @@ struct cmd_results *cmd_smart_gaps(int argc, char **argv) {
|
||||||
return cmd_results_new(CMD_INVALID, "smart_gaps",
|
return cmd_results_new(CMD_INVALID, "smart_gaps",
|
||||||
"Expected 'smart_gaps <on|off>' ");
|
"Expected 'smart_gaps <on|off>' ");
|
||||||
}
|
}
|
||||||
|
|
||||||
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -193,8 +193,8 @@ static void config_defaults(struct sway_config *config) {
|
||||||
|
|
||||||
config->edge_gaps = true;
|
config->edge_gaps = true;
|
||||||
config->smart_gaps = false;
|
config->smart_gaps = false;
|
||||||
config->gaps_inner = 20;//0;
|
config->gaps_inner = 0;
|
||||||
config->gaps_outer = 20;//0;
|
config->gaps_outer = 0;
|
||||||
|
|
||||||
if (!(config->active_bar_modifiers = create_list())) goto cleanup;
|
if (!(config->active_bar_modifiers = create_list())) goto cleanup;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue