sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit bd42415b5d3254f699a01845a0396e24f0de1a5f
parent 1d483c340d39ca75996729cfc6d5bb2b33cff2be
Author: Ronan Pigott <rpigott@berkeley.edu>
Date:   Thu, 26 Dec 2019 21:18:34 -0700

config/output: apply scale_filter even when scale has not changed

Diffstat:
Msway/config/output.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/sway/config/output.c b/sway/config/output.c @@ -366,7 +366,9 @@ bool apply_output_config(struct output_config *oc, struct sway_output *output) { if (scale != wlr_output->scale) { sway_log(SWAY_DEBUG, "Set %s scale to %f", oc->name, scale); wlr_output_set_scale(wlr_output, scale); + } + if (oc) { enum scale_filter_mode scale_filter_old = output->scale_filter; switch (oc->scale_filter) { case SCALE_FILTER_DEFAULT: