mirror of
https://github.com/swaywm/sway.git
synced 2025-11-26 06:59:59 -05:00
Introduce container_is_scratchpad_hidden
Just a convenience function that improves readability of the code. Other things worth noting: * container_get_siblings and container_sibling_index no longer use the const keyword * container_handle_fullscreen_reparent is only ever called after attaching the container to a workspace, so its con->workspace check has been changed to an assertion
This commit is contained in:
parent
68a28e482f
commit
6b8bf10941
12 changed files with 35 additions and 30 deletions
|
|
@ -252,8 +252,7 @@ static void output_for_each_surface(struct sway_output *output,
|
|||
|
||||
struct sway_workspace *workspace = output_get_active_workspace(output);
|
||||
struct sway_container *fullscreen_con = root->fullscreen_global;
|
||||
if (fullscreen_con && fullscreen_con->scratchpad &&
|
||||
!fullscreen_con->workspace) {
|
||||
if (fullscreen_con && container_is_scratchpad_hidden(fullscreen_con)) {
|
||||
fullscreen_con = NULL;
|
||||
}
|
||||
if (!fullscreen_con) {
|
||||
|
|
|
|||
|
|
@ -986,8 +986,7 @@ void output_render(struct sway_output *output, struct timespec *when,
|
|||
}
|
||||
|
||||
struct sway_container *fullscreen_con = root->fullscreen_global;
|
||||
if (fullscreen_con && fullscreen_con->scratchpad &&
|
||||
!fullscreen_con->workspace) {
|
||||
if (fullscreen_con && container_is_scratchpad_hidden(fullscreen_con)) {
|
||||
fullscreen_con = NULL;
|
||||
}
|
||||
if (!fullscreen_con) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue