mirror of
https://github.com/DreamMaoMao/maomaowm.git
synced 2025-10-29 05:40:21 -04:00
opt: monitor rule fallback to custom mode
This commit is contained in:
parent
13d0424c1b
commit
1d31a3ffb2
2 changed files with 8 additions and 0 deletions
|
|
@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue