aboutsummaryrefslogtreecommitdiffstats
path: root/sway/tree
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-03 11:01:44 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-03 11:01:44 -0500
commit802e7392f89a1e401a3953099ac5d477a461e469 (patch)
treef38154ed617c81c10e4054752d94806ee0c257bd /sway/tree
parentMerge pull request #1489 from acrisci/feature/basic-get-tree (diff)
downloadsway-802e7392f89a1e401a3953099ac5d477a461e469.tar.gz
sway-802e7392f89a1e401a3953099ac5d477a461e469.tar.zst
sway-802e7392f89a1e401a3953099ac5d477a461e469.zip
use "size" instead of "dimensions"
Diffstat (limited to 'sway/tree')
-rw-r--r--sway/tree/layout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/tree/layout.c b/sway/tree/layout.c
index ea7bb8bb..2d442f2a 100644
--- a/sway/tree/layout.c
+++ b/sway/tree/layout.c
@@ -155,7 +155,7 @@ void arrange_windows(swayc_t *container, double width, double height) {
155 { 155 {
156 container->width = width; 156 container->width = width;
157 container->height = height; 157 container->height = height;
158 container->sway_view->iface.set_dimensions(container->sway_view, 158 container->sway_view->iface.set_size(container->sway_view,
159 container->width, container->height); 159 container->width, container->height);
160 sway_log(L_DEBUG, "Set view to %.f x %.f @ %.f, %.f", 160 sway_log(L_DEBUG, "Set view to %.f x %.f @ %.f, %.f",
161 container->width, container->height, 161 container->width, container->height,