aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Luminarys <kizunanohikari@gmail.com>2015-08-17 10:34:39 -0500
committerLibravatar Luminarys <kizunanohikari@gmail.com>2015-08-17 10:34:39 -0500
commitc9ce8bf1bd0f4cfb459bcb7d3ec45429c0a81293 (patch)
treef9da3981625cd2235961f8efee7c4f3a94649241 /include
parentMinor fix to do proper floating refocuses (diff)
downloadsway-c9ce8bf1bd0f4cfb459bcb7d3ec45429c0a81293.tar.gz
sway-c9ce8bf1bd0f4cfb459bcb7d3ec45429c0a81293.tar.zst
sway-c9ce8bf1bd0f4cfb459bcb7d3ec45429c0a81293.zip
Style and other minor fixes
Diffstat (limited to 'include')
-rw-r--r--include/container.h8
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 {
36 // Not including borders or margins 36 // Not including borders or margins
37 int width, height; 37 int width, height;
38 38
39 // Used for setting floating geometry 39 // Used for setting floating geometry
40 int desired_width, desired_height; 40 int desired_width, desired_height;
41 41
42 int x, y; 42 int x, y;
43 43
44 bool visible; 44 bool visible;
45 45
46 bool is_floating; 46 bool is_floating;
47 47
48 int weight; 48 int weight;
49 49
@@ -51,7 +51,7 @@ struct sway_container {
51 51
52 list_t *children; 52 list_t *children;
53 53
54 // Special list for floating windows in workspaces 54 // Special list for floating windows in workspaces
55 list_t *floating; 55 list_t *floating;
56 56
57 struct sway_container *parent; 57 struct sway_container *parent;