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.
This commit is contained in:
Andri Yngvason 2020-07-18 15:56:43 +00:00 committed by Simon Ser
parent 380f6c9b46
commit ab8ded626b
1 changed files with 2 additions and 1 deletions

View File

@ -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;