diff options
author | Luminarys <[email protected]> | 2015-08-20 21:37:59 -0500 |
---|---|---|
committer | Luminarys <[email protected]> | 2015-08-20 21:37:59 -0500 |
commit | f589731f2912660bab6fdffc14ddcdbac3edd41c (patch) | |
tree | cda490ea65181959c777e623cb0f20f055f1d90a /include/container.h | |
parent | c9935507f2bc8e2471f6642e99a2fb52ab1310f0 (diff) |
Rewrite of resize command to make it more sane
Diffstat (limited to 'include/container.h')
-rw-r--r-- | include/container.h | 4 |
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 { enum swayc_layouts layout; // Not including borders or margins - int width, height; + double width, height; // Used for setting floating geometry int desired_width, desired_height; - int x, y; + double x, y; bool visible; bool is_floating; |