mirror of
https://github.com/swaywm/sway.git
synced 2025-11-11 13:29:51 -05:00
Rename seat_get_active_child to seat_get_active_tiling_child
Also renames container to con in one function to prevent ugly line wrapping.
This commit is contained in:
parent
48bc15e758
commit
f6e218a643
8 changed files with 16 additions and 15 deletions
|
|
@ -1001,17 +1001,17 @@ bool view_is_visible(struct sway_view *view) {
|
|||
bool is_sticky = container_is_floating(floater) && floater->is_sticky;
|
||||
// Check view isn't in a tabbed or stacked container on an inactive tab
|
||||
struct sway_seat *seat = input_manager_current_seat(input_manager);
|
||||
struct sway_container *container = view->container;
|
||||
while (container) {
|
||||
enum sway_container_layout layout = container_parent_layout(container);
|
||||
struct sway_container *con = view->container;
|
||||
while (con) {
|
||||
enum sway_container_layout layout = container_parent_layout(con);
|
||||
if (layout == L_TABBED || layout == L_STACKED) {
|
||||
struct sway_node *parent = container->parent ?
|
||||
&container->parent->node : &container->workspace->node;
|
||||
if (seat_get_active_child(seat, parent) != &container->node) {
|
||||
struct sway_node *parent = con->parent ?
|
||||
&con->parent->node : &con->workspace->node;
|
||||
if (seat_get_active_tiling_child(seat, parent) != &con->node) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
container = container->parent;
|
||||
con = con->parent;
|
||||
}
|
||||
// Check view isn't hidden by another fullscreen view
|
||||
if (workspace->fullscreen &&
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue