summaryrefslogtreecommitdiffstats
path: root/sway/container.c
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <ddevault@linode.com>2016-07-18 16:21:45 -0400
committerLibravatar Drew DeVault <ddevault@linode.com>2016-07-28 14:36:49 -0400
commit11e7ca044c61f0bcce95a90b50814f780f769f21 (patch)
tree70a4b6d6e476471a7f290f8c1278b01b275358be /sway/container.c
parentInitial pass on HiDPI support (diff)
downloadsway-11e7ca044c61f0bcce95a90b50814f780f769f21.tar.gz
sway-11e7ca044c61f0bcce95a90b50814f780f769f21.tar.zst
sway-11e7ca044c61f0bcce95a90b50814f780f769f21.zip
Update hidpi support to latest wlc API
Diffstat (limited to 'sway/container.c')
-rw-r--r--sway/container.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/container.c b/sway/container.c
index df9ce724..c922bac3 100644
--- a/sway/container.c
+++ b/sway/container.c
@@ -103,7 +103,7 @@ static void update_root_geometry() {
103 103
104swayc_t *new_output(wlc_handle handle) { 104swayc_t *new_output(wlc_handle handle) {
105 struct wlc_size size; 105 struct wlc_size size;
106 wlc_output_get_scaled_size(handle, &size); 106 output_get_scaled_size(handle, &size);
107 const char *name = wlc_output_get_name(handle); 107 const char *name = wlc_output_get_name(handle);
108 // Find current outputs to see if this already exists 108 // Find current outputs to see if this already exists
109 { 109 {