backend/drm: log when restoring mode after VT switch fails

Can make it easier to track down issues.
This commit is contained in:
Simon Ser 2022-10-17 13:21:19 +02:00 committed by Simon Zeni
parent 98a83ce14c
commit 0c962c98cc
1 changed files with 3 additions and 1 deletions

View File

@ -120,7 +120,9 @@ static void handle_session_active(struct wl_listener *listener, void *data) {
.mode_type = WLR_OUTPUT_STATE_MODE_FIXED,
.mode = mode,
};
drm_connector_commit_state(conn, &state);
if (!drm_connector_commit_state(conn, &state)) {
wlr_drm_conn_log(conn, WLR_ERROR, "Failed to restore state after VT switch");
}
}
} else {
wlr_log(WLR_INFO, "DRM fd paused");