diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-12-13 07:58:00 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-12-13 07:58:00 -0500 |
commit | d361ce656d314f24dd34a76387f105b94bc3fb1f (patch) | |
tree | 187e03107bbf82ca67bab86379e69e3a74eb0439 /include/container.h | |
parent | 6655534febe2f611a9ff2d9d11c6db4688acd47b (diff) |
Track the fullscreen view on a workspace swayc_t
Diffstat (limited to 'include/container.h')
-rw-r--r-- | include/container.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/container.h b/include/container.h index 157b996a..d027f369 100644 --- a/include/container.h +++ b/include/container.h @@ -97,6 +97,10 @@ struct sway_container { * Which of this container's children has focus. */ struct sway_container *focused; + /** + * If this container's children include a fullscreen view, this is that view. + */ + struct sway_container *fullscreen; }; enum visibility_mask { |