diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2015-12-13 07:58:00 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2015-12-13 07:58:00 -0500 |
| commit | 015b94fac0a03e0fd157191ea2d02c10c0e06fbe (patch) | |
| tree | 187e03107bbf82ca67bab86379e69e3a74eb0439 /include/container.h | |
| parent | 740f46cbc5f3ed6dbbcce7a5f8402822fa8061b9 (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 { |
