diff options
author | Drew DeVault <[email protected]> | 2018-05-04 08:24:25 -0400 |
---|---|---|
committer | Ryan Dwyer <[email protected]> | 2018-06-01 23:14:58 +1000 |
commit | f3ab895916ca1a0f004b5ceaefa90eee90676532 (patch) | |
tree | aa572c41265fae21617b13b62b1c8d5df1f2d47d /include/sway/tree/workspace.h | |
parent | c47d6cb1c47e98a42a6a94bd37c179cabe3af914 (diff) |
Implement `floating enable`
Diffstat (limited to 'include/sway/tree/workspace.h')
-rw-r--r-- | include/sway/tree/workspace.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sway/tree/workspace.h b/include/sway/tree/workspace.h index 35e1df3b..ece0ab5c 100644 --- a/include/sway/tree/workspace.h +++ b/include/sway/tree/workspace.h @@ -8,6 +8,7 @@ struct sway_view; struct sway_workspace { struct sway_container *swayc; struct sway_view *fullscreen; + list_t *floating; }; extern char *prev_workspace_name; |