commit d86afdc6ed72ec03fd2fe727132ee30476b82ae0
parent f3b96d4050bcf0136e0878d8102e47fdb0ec6f98
Author: Drew DeVault <sir@cmpwn.com>
Date: Thu, 6 Sep 2018 19:18:30 -0400
Merge pull request #2600 from RyanDwyer/fix-workspace-switching
Fix workspace switching
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sway/input/seat.c b/sway/input/seat.c
@@ -605,7 +605,7 @@ void seat_set_focus_warp(struct sway_seat *seat, struct sway_node *node,
last_workspace->output : NULL;
struct sway_output *new_output = new_workspace->output;
- if (last_workspace != new_workspace && last_output == new_output) {
+ if (last_workspace != new_workspace && new_output) {
node_set_dirty(&new_output->node);
}