summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2015-12-16 19:20:34 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2015-12-16 19:20:34 -0500
commitf6da4dda4b9598eab16d4d7d77a06693fa6df9c3 (patch)
tree20ef4c5270639ac0cf972ab75a497b9e461dccf2 /include
parentMerge pull request #340 from mikkeloscar/seperator-separator (diff)
downloadsway-f6da4dda4b9598eab16d4d7d77a06693fa6df9c3.tar.gz
sway-f6da4dda4b9598eab16d4d7d77a06693fa6df9c3.tar.zst
sway-f6da4dda4b9598eab16d4d7d77a06693fa6df9c3.zip
Bring unmanaged windows to front on output arrange
Fixes #312
Diffstat (limited to 'include')
-rw-r--r--include/container.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/container.h b/include/container.h
index d027f369..9a67a689 100644
--- a/include/container.h
+++ b/include/container.h
@@ -88,6 +88,10 @@ struct sway_container {
88 * Children of this container that are floated. 88 * Children of this container that are floated.
89 */ 89 */
90 list_t *floating; 90 list_t *floating;
91 /**
92 * Unmanaged view handles in this container.
93 */
94 list_t *unmanaged;
91 95
92 /** 96 /**
93 * The parent of this container. NULL for the root container. 97 * The parent of this container. NULL for the root container.