summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-07-23 16:19:00 -0400
committerLibravatar GitHub <noreply@github.com>2018-07-23 16:19:00 -0400
commite94fd0e6eb0ff65a37ec91ecd349e5a7aab755bb (patch)
tree0d4e6ad48af029b4e76dda05dd8acb8bfb63f9d7
parentMerge pull request #2338 from somdoron/master (diff)
parentAdd missing checks to fix 2339 (diff)
downloadsway-e94fd0e6eb0ff65a37ec91ecd349e5a7aab755bb.tar.gz
sway-e94fd0e6eb0ff65a37ec91ecd349e5a7aab755bb.tar.zst
sway-e94fd0e6eb0ff65a37ec91ecd349e5a7aab755bb.zip
Merge pull request #2341 from RedSoxFan/fix-2339
Add missing checks to fix 2339
-rw-r--r--sway/input/seat.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 273223db..fc9e54b6 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -628,6 +628,7 @@ void seat_set_focus_warp(struct sway_seat *seat,
628 628
629 if (last_workspace && last_workspace == new_workspace 629 if (last_workspace && last_workspace == new_workspace
630 && last_workspace->sway_workspace->fullscreen 630 && last_workspace->sway_workspace->fullscreen
631 && container && container->type == C_VIEW
631 && !container->sway_view->is_fullscreen) { 632 && !container->sway_view->is_fullscreen) {
632 return; 633 return;
633 } 634 }