From ab8ded626b5d0e9c59495b0988be4077b605d3a2 Mon Sep 17 00:00:00 2001 From: Andri Yngvason Date: Sat, 18 Jul 2020 15:56:43 +0000 Subject: desktop: output: Scale custom output refresh rate This fixes an issue with wlr-output-management causing the frame rate to jump to 60000 Hz when setting a custom mode. --- sway/desktop/output.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sway/desktop/output.c') diff --git a/sway/desktop/output.c b/sway/desktop/output.c index 5fdaba68..90653fa1 100644 --- a/sway/desktop/output.c +++ b/sway/desktop/output.c @@ -996,7 +996,8 @@ static void output_manager_apply(struct sway_server *server, } else { oc->width = config_head->state.custom_mode.width; oc->height = config_head->state.custom_mode.height; - oc->refresh_rate = config_head->state.custom_mode.refresh; + oc->refresh_rate = + config_head->state.custom_mode.refresh / 1000.f; } oc->x = config_head->state.x; oc->y = config_head->state.y; -- cgit v1.2.3-54-g00ecf