sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 5e925f06e0e2bb62ee777079bd8a076c290e3df9
parent 35ddd9aab3c386345176d7ea1f5814f152ba16bd
Author: mwenzkowski <29407878+mwenzkowski@users.noreply.github.com>
Date:   Thu, 18 Apr 2019 21:15:33 +0200

hide_edge_borders.c: add missing case for --i3

Disable the i3-compatible behavior if the option '--i3' is not given.
Previously it was only possible to disable it by changing the config
file. Now it also works via swaymsg.

Diffstat:
Msway/commands/hide_edge_borders.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/sway/commands/hide_edge_borders.c b/sway/commands/hide_edge_borders.c @@ -13,6 +13,8 @@ struct cmd_results *cmd_hide_edge_borders(int argc, char **argv) { config->hide_lone_tab = true; ++argv; --argc; + } else { + config->hide_lone_tab = false; } if (strcmp(argv[0], "none") == 0) {