mirror of
https://github.com/swaywm/sway.git
synced 2026-04-18 06:46:56 -04:00
focus: beyond fullscreen when focused explicitly
When issuing a focus command on a specific container, users expect to proceed it even if is hidden by a fullscreen window. This matches the behavior of i3.
This commit is contained in:
parent
eea9c6331f
commit
c6e7cf1ae5
4 changed files with 38 additions and 15 deletions
|
|
@ -418,6 +418,28 @@ void container_for_each_child(struct sway_container *container,
|
|||
}
|
||||
}
|
||||
|
||||
struct sway_container *container_obstructing_fullscreen_container(struct sway_container *container)
|
||||
{
|
||||
struct sway_workspace *workspace = container->pending.workspace;
|
||||
|
||||
if (workspace && workspace->fullscreen && !container_is_fullscreen_or_child(container)) {
|
||||
if (container_is_transient_for(container, workspace->fullscreen)) {
|
||||
return NULL;
|
||||
}
|
||||
return workspace->fullscreen;
|
||||
}
|
||||
|
||||
struct sway_container *fullscreen_global = root->fullscreen_global;
|
||||
if (fullscreen_global && container != fullscreen_global && !container_has_ancestor(container, fullscreen_global)) {
|
||||
if (container_is_transient_for(container, fullscreen_global)) {
|
||||
return NULL;
|
||||
}
|
||||
return fullscreen_global;
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
bool container_has_ancestor(struct sway_container *descendant,
|
||||
struct sway_container *ancestor) {
|
||||
while (descendant) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue