Merge pull request #694 from Ongy/keep_current_mode

prevent current_mode null on output_enable(false)
This commit is contained in:
emersion 2018-03-01 17:08:48 +01:00 committed by GitHub
commit 7340cf19ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 3 deletions

View File

@ -81,7 +81,7 @@ static void session_signal(struct wl_listener *listener, void *data) {
struct wlr_drm_connector *conn;
wl_list_for_each(conn, &drm->outputs, link){
if (conn->output.current_mode) {
if (conn->output.enabled) {
wlr_output_set_mode(&conn->output, conn->output.current_mode);
} else {
wlr_drm_connector_enable(&conn->output, false);

View File

@ -296,8 +296,6 @@ void wlr_drm_connector_enable(struct wlr_output *output, bool enable) {
if (enable) {
wlr_drm_connector_start_renderer(conn);
} else {
output->current_mode = NULL;
}
wlr_output_update_enabled(&conn->output, enable);