mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-02 09:01:38 -05:00
wlr_output: Set current_mode during new custom mode
When setting a custom mode current_mode will not be reset. That means that next time the compositor tries to reset back from the custom mode, it will compare against the stale current_mode and unset WLR_OUTPUT_STATE_MODE erroneously.
This commit is contained in:
parent
72787db98a
commit
e85c79051c
1 changed files with 1 additions and 0 deletions
|
|
@ -358,6 +358,7 @@ static void output_apply_state(struct wlr_output *output,
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case WLR_OUTPUT_STATE_MODE_CUSTOM:
|
case WLR_OUTPUT_STATE_MODE_CUSTOM:
|
||||||
|
output->current_mode = NULL;
|
||||||
width = state->custom_mode.width;
|
width = state->custom_mode.width;
|
||||||
height = state->custom_mode.height;
|
height = state->custom_mode.height;
|
||||||
refresh = state->custom_mode.refresh;
|
refresh = state->custom_mode.refresh;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue