xdg-shell: improve shell version check

This commit is contained in:
Kirill Primak 2022-06-11 20:22:54 +03:00
parent d57d2e0e36
commit e7b217efb9
1 changed files with 2 additions and 1 deletions

View File

@ -506,7 +506,8 @@ uint32_t wlr_xdg_toplevel_set_resizing(struct wlr_xdg_toplevel *toplevel,
uint32_t wlr_xdg_toplevel_set_tiled(struct wlr_xdg_toplevel *toplevel,
uint32_t tiled) {
assert(toplevel->base->client->shell->version >= 2);
assert(toplevel->base->client->shell->version >=
XDG_TOPLEVEL_STATE_TILED_LEFT_SINCE_VERSION);
toplevel->scheduled.tiled = tiled;
return wlr_xdg_surface_schedule_configure(toplevel->base);
}