aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Ashworth <bosrsf04@gmail.com>2019-02-10 20:12:51 -0500
committerDrew DeVault <sir@cmpwn.com>2019-02-11 10:22:53 -0500
commite4e579ea3687342d06915be0df0093987e0e0314 (patch)
tree3500b7c5b1fe18b8dd9d5064362444bcc3f9ce6e
parent40023d45a18abb0e177818fa60b8a359680eb3c3 (diff)
downloadsway-e4e579ea3687342d06915be0df0093987e0e0314.zip
sway-e4e579ea3687342d06915be0df0093987e0e0314.tar.gz
sway-e4e579ea3687342d06915be0df0093987e0e0314.tar.bz2
workspace_get_initial_output: handle focused layer1.0-rc2
When a layer surface is focused, `seat_get_focused_workspace` will be NULL. This changes `workspace_get_initial_output` to use output of the focus inactive. If the focus inactive is also NULL, then either the first output or the noop output will be used as fallbacks.
-rw-r--r--sway/tree/workspace.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/sway/tree/workspace.c b/sway/tree/workspace.c
index 8b3eb2a..b978092 100644
--- a/sway/tree/workspace.c
+++ b/sway/tree/workspace.c
@@ -42,10 +42,16 @@ struct sway_output *workspace_get_initial_output(const char *name) {
}
}
}
- // Otherwise put it on the focused output
+ // Otherwise try to put it on the focused output
struct sway_seat *seat = input_manager_current_seat();
- struct sway_workspace *focus = seat_get_focused_workspace(seat);
- return focus->output;
+ struct sway_node *focus = seat_get_focus_inactive(seat, &root->node);
+ if (focus && focus->type == N_WORKSPACE) {
+ return focus->sway_workspace->output;
+ } else if (focus && focus->type == N_CONTAINER) {
+ return focus->sway_container->workspace->output;
+ }
+ // Fallback to the first output or noop output for headless
+ return root->outputs->length ? root->outputs->items[0] : root->noop_output;
}
static void prevent_invalid_outer_gaps(struct sway_workspace *ws) {