diff options
author | Ryan Dwyer <RyanDwyer@users.noreply.github.com> | 2018-10-02 08:57:55 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-02 08:57:55 +1000 |
commit | b542c5413efdbbe0bbf3be0196fe566b8c6bb07f (patch) | |
tree | 6b9f56b3700dda60efdaff4446fc684009490b5b /sway/tree/workspace.c | |
parent | 9956a1a9ab7141da813e8db63adb7b800958400b (diff) | |
parent | 82559c16c701aa912b341ecbbd116c2992c5e698 (diff) | |
download | sway-b542c5413efdbbe0bbf3be0196fe566b8c6bb07f.tar.xz |
Merge pull request #2739 from RedSoxFan/fix-2653
Fix smart gaps
Diffstat (limited to 'sway/tree/workspace.c')
-rw-r--r-- | sway/tree/workspace.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/sway/tree/workspace.c b/sway/tree/workspace.c index 9dd5c815..e9e5dfa2 100644 --- a/sway/tree/workspace.c +++ b/sway/tree/workspace.c @@ -640,11 +640,17 @@ void workspace_add_gaps(struct sway_workspace *ws) { if (ws->current_gaps > 0) { return; } - bool should_apply = - config->edge_gaps || (config->smart_gaps && ws->tiling->length > 1); - if (!should_apply) { + if (!config->edge_gaps) { return; } + if (config->smart_gaps) { + struct sway_seat *seat = input_manager_get_default_seat(input_manager); + struct sway_container *focus = + seat_get_focus_inactive_view(seat, &ws->node); + if (focus && focus->view && view_is_only_visible(focus->view)) { + return; + } + } ws->current_gaps = ws->gaps_outer; |