summaryrefslogtreecommitdiffstats
path: root/include/container.h
diff options
context:
space:
mode:
authorLibravatar Luminarys <kizunanohikari@gmail.com>2015-08-20 21:37:59 -0500
committerLibravatar Luminarys <kizunanohikari@gmail.com>2015-08-20 21:37:59 -0500
commitf589731f2912660bab6fdffc14ddcdbac3edd41c (patch)
treecda490ea65181959c777e623cb0f20f055f1d90a /include/container.h
parentStyle fixes (diff)
downloadsway-f589731f2912660bab6fdffc14ddcdbac3edd41c.tar.gz
sway-f589731f2912660bab6fdffc14ddcdbac3edd41c.tar.zst
sway-f589731f2912660bab6fdffc14ddcdbac3edd41c.zip
Rewrite of resize command to make it more sane
Diffstat (limited to 'include/container.h')
-rw-r--r--include/container.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/container.h b/include/container.h
index bd92058d..d3026011 100644
--- a/include/container.h
+++ b/include/container.h
@@ -33,12 +33,12 @@ struct sway_container {
33 enum swayc_layouts layout; 33 enum swayc_layouts layout;
34 34
35 // Not including borders or margins 35 // Not including borders or margins
36 int width, height; 36 double width, height;
37 37
38 // Used for setting floating geometry 38 // Used for setting floating geometry
39 int desired_width, desired_height; 39 int desired_width, desired_height;
40 40
41 int x, y; 41 double x, y;
42 42
43 bool visible; 43 bool visible;
44 bool is_floating; 44 bool is_floating;