diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-01-27 18:06:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-27 18:06:50 -0500 |
commit | 783fadab284c79c8e13625e5e2a2eefae02c75d3 (patch) | |
tree | 795c5c69a7fcfc9336115ac157a41b943190f206 /sway/input/cursor.c | |
parent | 897250c65fb4d7123361dc6f77c2824179ed8885 (diff) | |
parent | 20aa8ee67dc528299dbc8735220a1c081c7ff9f6 (diff) |
Merge pull request #3423 from RyanDwyer/fullscreen-global
Implement fullscreen global
Diffstat (limited to 'sway/input/cursor.c')
-rw-r--r-- | sway/input/cursor.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c index af2799ce..c84d6c40 100644 --- a/sway/input/cursor.c +++ b/sway/input/cursor.c @@ -90,6 +90,16 @@ struct sway_node *node_at_coords( double ox = lx, oy = ly; wlr_output_layout_output_coords(root->output_layout, wlr_output, &ox, &oy); + if (root->fullscreen_global) { + // Try fullscreen container + struct sway_container *con = tiling_container_at( + &root->fullscreen_global->node, lx, ly, surface, sx, sy); + if (con) { + return &con->node; + } + return NULL; + } + // find the focused workspace on the output for this seat struct sway_workspace *ws = output_get_active_workspace(output); @@ -659,7 +669,7 @@ void dispatch_cursor_button(struct sway_cursor *cursor, // Handle moving a tiling container if (config->tiling_drag && (mod_pressed || on_titlebar) && state == WLR_BUTTON_PRESSED && !is_floating_or_child && - cont && !cont->is_fullscreen) { + cont && cont->fullscreen_mode == FULLSCREEN_NONE) { struct sway_container *focus = seat_get_focused_container(seat); bool focused = focus == cont || container_has_ancestor(focus, cont); if (on_titlebar && !focused) { |