mirror of
https://github.com/swaywm/sway.git
synced 2024-11-22 07:51:28 +00:00
Fix container_parent_layout for scratchpad windows
This commit is contained in:
parent
19df2e5906
commit
8b6bd106aa
|
@ -1163,8 +1163,11 @@ enum sway_container_layout container_parent_layout(struct sway_container *con) {
|
|||
if (con->parent) {
|
||||
return con->parent->layout;
|
||||
}
|
||||
if (con->workspace) {
|
||||
return con->workspace->layout;
|
||||
}
|
||||
return L_NONE;
|
||||
}
|
||||
|
||||
enum sway_container_layout container_current_parent_layout(
|
||||
struct sway_container *con) {
|
||||
|
|
Loading…
Reference in a new issue