summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2018-09-06 19:18:30 -0400
committerFurkan Sahin <furkan-dev@proton.me>2018-09-06 19:18:30 -0400
commitcfb2272ad415bcb8ff476d53c28ce315cec0c46e (patch)
tree6c19a541162823425964423d8906227a6afd4353
parent2d207fb827c49165846d6a7aa6b17695aa25137f (diff)
parent90cf2c93ed4084a0852c8714cd1fc3a7a16363d1 (diff)
Merge pull request #2600 from RyanDwyer/fix-workspace-switching
Fix workspace switching
-rw-r--r--sway/input/seat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 9ee85e9b..e86a2b81 100644
--- 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);
}