diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-12-18 09:21:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-18 09:21:30 -0500 |
commit | eb4f66f7857d3e7cd8ac14a7fb43502fbc70de98 (patch) | |
tree | 7415bceb798fe498b0ab2d513736e0d7d06b5080 /sway/config | |
parent | 4fea223aba96c743726d509fee58ec8d8ff4a3d3 (diff) | |
parent | c815d6d1a97fe940052f079bd8eb7f174f5ab004 (diff) | |
download | sway-eb4f66f7857d3e7cd8ac14a7fb43502fbc70de98.tar.xz |
Merge pull request #1526 from emersion/fractional-output-scale
Add support for fractional output scale
Diffstat (limited to 'sway/config')
-rw-r--r-- | sway/config/output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/config/output.c b/sway/config/output.c index dc9ee37c..ff3f73a3 100644 --- a/sway/config/output.c +++ b/sway/config/output.c @@ -111,7 +111,7 @@ void apply_output_config(struct output_config *oc, swayc_t *output) { set_mode(wlr_output, oc->width, oc->height, oc->refresh_rate); } if (oc && oc->scale > 0) { - sway_log(L_DEBUG, "Set %s scale to %d", oc->name, oc->scale); + sway_log(L_DEBUG, "Set %s scale to %f", oc->name, oc->scale); wlr_output_set_scale(wlr_output, oc->scale); } if (oc && oc->transform >= 0) { |