diff options
author | Tarmack <git@tarmack.eu> | 2018-10-11 21:51:11 +0200 |
---|---|---|
committer | Tarmack <git@tarmack.eu> | 2018-10-13 17:42:49 +0200 |
commit | 36d9037f2c419756b00d1fe2dbeefca278bc2799 (patch) | |
tree | d2300c007bbd28a68fc83d1d36faf459c971186c /sway/tree | |
parent | b80cf982ae5151775a11a2b579eae41ffa9d3e14 (diff) |
fix_edge_gaps: Allow negative values for outer gaps.
While allowing negative values for the outer gaps it is still prevented that negative values move windows out of the container. This replaces the non-i3 option for edge_gaps.
Diffstat (limited to 'sway/tree')
-rw-r--r-- | sway/tree/workspace.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sway/tree/workspace.c b/sway/tree/workspace.c index d7650560..a1282c1e 100644 --- a/sway/tree/workspace.c +++ b/sway/tree/workspace.c @@ -73,10 +73,10 @@ struct sway_workspace *workspace_create(struct sway_output *output, if (name) { struct workspace_config *wsc = workspace_find_config(name); if (wsc) { - if (wsc->gaps_outer != -1) { + if (wsc->gaps_outer != INT_MIN) { ws->gaps_outer = wsc->gaps_outer; } - if (wsc->gaps_inner != -1) { + if (wsc->gaps_inner != INT_MIN) { ws->gaps_inner = wsc->gaps_inner; } } @@ -618,9 +618,6 @@ void workspace_add_gaps(struct sway_workspace *ws) { if (ws->current_gaps > 0) { return; } - if (!config->edge_gaps) { - return; - } if (config->smart_gaps) { struct sway_seat *seat = input_manager_get_default_seat(input_manager); struct sway_container *focus = |