mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-21 22:52:20 +00:00
backend/x11: Reject non 0 refresh rate mode sets
This commit is contained in:
parent
5567aefb1c
commit
99314aac9f
@ -133,6 +133,10 @@ static bool output_test(struct wlr_output *wlr_output,
|
||||
|
||||
if (state->committed & WLR_OUTPUT_STATE_MODE) {
|
||||
assert(state->mode_type == WLR_OUTPUT_STATE_MODE_CUSTOM);
|
||||
|
||||
if (state->custom_mode.refresh != 0) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user