diff options
author | Luminarys <kizunanohikari@gmail.com> | 2015-08-17 10:34:39 -0500 |
---|---|---|
committer | Luminarys <kizunanohikari@gmail.com> | 2015-08-17 10:34:39 -0500 |
commit | c9ce8bf1bd0f4cfb459bcb7d3ec45429c0a81293 (patch) | |
tree | f9da3981625cd2235961f8efee7c4f3a94649241 /include | |
parent | 3f475f5009974a5dcdfe12f578208a4fd92c84ba (diff) | |
download | sway-c9ce8bf1bd0f4cfb459bcb7d3ec45429c0a81293.tar.xz |
Style and other minor fixes
Diffstat (limited to 'include')
-rw-r--r-- | include/container.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/container.h b/include/container.h index 3136e565..e395a55b 100644 --- a/include/container.h +++ b/include/container.h @@ -36,14 +36,14 @@ struct sway_container { // Not including borders or margins int width, height; - // Used for setting floating geometry - int desired_width, desired_height; + // Used for setting floating geometry + int desired_width, desired_height; int x, y; bool visible; - bool is_floating; + bool is_floating; int weight; @@ -51,7 +51,7 @@ struct sway_container { list_t *children; - // Special list for floating windows in workspaces + // Special list for floating windows in workspaces list_t *floating; struct sway_container *parent; |