mirror of
https://github.com/swaywm/sway.git
synced 2024-11-14 14:34:07 +01:00
desktop/output: Clear modeset timer on output manager apply
If a modeset timer exists at the time we apply an output manager config, clear it to avoid a useless double commit.
This commit is contained in:
parent
cdff4f7c74
commit
63345977e2
@ -607,6 +607,10 @@ static void output_manager_apply(struct sway_server *server,
|
||||
done:
|
||||
if (ok) {
|
||||
wlr_output_configuration_v1_send_succeeded(cfg);
|
||||
if (server->delayed_modeset != NULL) {
|
||||
wl_event_source_remove(server->delayed_modeset);
|
||||
server->delayed_modeset = NULL;
|
||||
}
|
||||
} else {
|
||||
wlr_output_configuration_v1_send_failed(cfg);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user