mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2024-11-21 22:52:20 +00:00
backend/wayland: use request_state when toplevel is resized
This commit is contained in:
parent
ff55663906
commit
756ecf8ee9
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user