diff options
author | Drew DeVault <ddevault@linode.com> | 2016-07-18 16:21:45 -0400 |
---|---|---|
committer | Drew DeVault <ddevault@linode.com> | 2016-07-28 14:36:49 -0400 |
commit | 11e7ca044c61f0bcce95a90b50814f780f769f21 (patch) | |
tree | 70a4b6d6e476471a7f290f8c1278b01b275358be /sway/handlers.c | |
parent | 6ea02f3064736b7f53e5b28c16ee74f5665ce1b8 (diff) |
Update hidpi support to latest wlc API
Diffstat (limited to 'sway/handlers.c')
-rw-r--r-- | sway/handlers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/handlers.c b/sway/handlers.c index ad035e38..7e958c72 100644 --- a/sway/handlers.c +++ b/sway/handlers.c @@ -57,7 +57,7 @@ static struct background_config *if_background_find_config(struct wl_client *cli static struct wlc_geometry compute_panel_geometry(struct panel_config *config) { struct wlc_size resolution; - wlc_output_get_scaled_size(config->output, &resolution); + output_get_scaled_size(config->output, &resolution); const struct wlc_geometry *old = wlc_view_get_geometry(config->handle); struct wlc_geometry new; |