opt: monitor rule fallback to custom mode

This commit is contained in:
DreamMaoMao 2025-09-02 10:45:43 +08:00
parent 13d0424c1b
commit 1d31a3ffb2
2 changed files with 8 additions and 0 deletions

View file

@ -2625,6 +2625,10 @@ void reapply_monitor_rules(void) {
mr->height, mr->refresh);
if (internal_mode) {
wlr_output_state_set_mode(&state, internal_mode);
} else {
wlr_output_state_set_custom_mode(
&state, mr->width, mr->height,
(int)roundf(mr->refresh * 1000));
}
}

View file

@ -2538,6 +2538,10 @@ void createmon(struct wl_listener *listener, void *data) {
r->height, r->refresh);
if (internal_mode) {
wlr_output_state_set_mode(&state, internal_mode);
} else {
wlr_output_state_set_custom_mode(
&state, r->width, r->height,
(int)roundf(r->refresh * 1000));
}
}
wlr_output_state_set_scale(&state, r->scale);