mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-04 20:55:58 +01:00
backend/drm: log when restoring mode after VT switch fails
Can make it easier to track down issues.
This commit is contained in:
parent
98a83ce14c
commit
0c962c98cc
1 changed files with 3 additions and 1 deletions
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue