mirror of
https://github.com/swaywm/sway.git
synced 2025-11-09 13:29:49 -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
|
|
@ -659,7 +659,7 @@ static struct cmd_results *cmd_move_in_direction(
|
|||
return cmd_results_new(CMD_FAILURE,
|
||||
"Cannot move workspaces in a direction");
|
||||
}
|
||||
if (container->scratchpad && !container->workspace) {
|
||||
if (container_is_scratchpad_hidden(container)) {
|
||||
return cmd_results_new(CMD_FAILURE,
|
||||
"Cannot move a hidden scratchpad container");
|
||||
}
|
||||
|
|
@ -734,7 +734,7 @@ static struct cmd_results *cmd_move_to_position(int argc, char **argv) {
|
|||
return cmd_results_new(CMD_FAILURE, "Only floating containers "
|
||||
"can be moved to an absolute position");
|
||||
}
|
||||
if (container->scratchpad && !container->workspace) {
|
||||
if (container_is_scratchpad_hidden(container)) {
|
||||
return cmd_results_new(CMD_FAILURE,
|
||||
"Cannot move a hidden scratchpad container");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue