summaryrefslogtreecommitdiff
path: root/include/container.h
diff options
context:
space:
mode:
authorDrew DeVault <[email protected]>2015-08-21 07:12:05 -0400
committerDrew DeVault <[email protected]>2015-08-21 07:12:05 -0400
commit464b49eda26f6a518bda39a8d07e1d9b0f498897 (patch)
tree7d0c55221b3028c2843da88b41029abac864b4a5 /include/container.h
parentcc5713aee6525fd1783c1a9280079f7e9abcd882 (diff)
parent96ab21b2766096bdb42d79a0169d42b9ff00e2fb (diff)
Merge pull request #101 from Luminarys/master
Added in basic resizing command.
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 fd621490..3598067c 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;