backend/wayland: use request_state when toplevel is resized

This commit is contained in:
Simon Ser 2021-01-28 16:04:47 +01:00 committed by Simon Zeni
parent ff55663906
commit 756ecf8ee9
1 changed files with 6 additions and 2 deletions

View File

@ -490,8 +490,12 @@ static void xdg_toplevel_handle_configure(void *data,
return;
}
// TODO: loop over states for maximized etc?
wlr_output_update_custom_mode(&output->wlr_output, width, height, 0);
struct wlr_output_state state = {
.committed = WLR_OUTPUT_STATE_MODE,
.mode_type = WLR_OUTPUT_STATE_MODE_CUSTOM,
.custom_mode = { .width = width, .height = height },
};
wlr_output_send_request_state(&output->wlr_output, &state);
}
static void xdg_toplevel_handle_close(void *data,