diff options
author | Ronan Pigott <rpigott@berkeley.edu> | 2019-11-13 11:23:36 -0700 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2019-11-29 18:13:37 +0100 |
commit | 6968fb3123e69f563cd01d472967a9e6ddca2ec1 (patch) | |
tree | 0e313d5e19da37762ab572e38c36ff33798f25fb /sway/tree | |
parent | 4b579536288108ec09bb8523dea6799228d3d7fa (diff) | |
download | sway-6968fb3123e69f563cd01d472967a9e6ddca2ec1.tar.xz |
add scale_filter output config option
Diffstat (limited to 'sway/tree')
-rw-r--r-- | sway/tree/output.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/tree/output.c b/sway/tree/output.c index c4ec6eec..d2ede1f2 100644 --- a/sway/tree/output.c +++ b/sway/tree/output.c @@ -93,6 +93,7 @@ struct sway_output *output_create(struct wlr_output *wlr_output) { output->wlr_output = wlr_output; wlr_output->data = output; output->detected_subpixel = wlr_output->subpixel; + output->scale_filter = SCALE_FILTER_NEAREST; wl_signal_init(&output->events.destroy); |