diff options
author | emersion <contact@emersion.fr> | 2017-12-14 20:29:30 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2017-12-14 20:29:30 +0100 |
commit | 75ef7860bbc3017bbe8e176138cac71da0127711 (patch) | |
tree | 66bcfa4057175e46509f77537d22379075308165 /backend/drm | |
parent | c67a5824b8831b50e9f3b09cc182f496fb973321 (diff) | |
parent | a9fb071d49b244b72846b384a9e2ef2d9b03a05f (diff) |
Merge branch 'master' into display-destroy
Diffstat (limited to 'backend/drm')
-rw-r--r-- | backend/drm/drm.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/backend/drm/drm.c b/backend/drm/drm.c index 9fcf2ad7..ba203791 100644 --- a/backend/drm/drm.c +++ b/backend/drm/drm.c @@ -453,11 +453,7 @@ static bool wlr_drm_connector_set_mode(struct wlr_output *output, conn->state = WLR_DRM_CONN_CONNECTED; conn->output.current_mode = mode; - if (conn->output.width != mode->width || conn->output.height != mode->height) { - conn->output.width = mode->width; - conn->output.height = mode->height; - wl_signal_emit(&conn->output.events.resolution, &conn->output); - } + wlr_output_update_size(&conn->output, mode->width, mode->height); // Since realloc_crtcs can deallocate planes on OTHER outputs, // we actually need to reinitalise any than has changed |