mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 21:05:58 +01:00
Rescan connectors on DRM resume
This commit is contained in:
parent
549777ca19
commit
3ed3271b98
1 changed files with 4 additions and 1 deletions
|
@ -62,10 +62,13 @@ static void session_signal(struct wl_listener *listener, void *data) {
|
||||||
|
|
||||||
if (session->active) {
|
if (session->active) {
|
||||||
wlr_log(L_INFO, "DRM fd resumed");
|
wlr_log(L_INFO, "DRM fd resumed");
|
||||||
|
wlr_drm_scan_connectors(drm);
|
||||||
|
|
||||||
struct wlr_drm_connector *conn;
|
struct wlr_drm_connector *conn;
|
||||||
wl_list_for_each(conn, &drm->outputs, link){
|
wl_list_for_each(conn, &drm->outputs, link){
|
||||||
wlr_drm_connector_start_renderer(conn);
|
if (conn->output.current_mode) {
|
||||||
|
wlr_output_set_mode(&conn->output, conn->output.current_mode);
|
||||||
|
}
|
||||||
|
|
||||||
if (!conn->crtc) {
|
if (!conn->crtc) {
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in a new issue