wayland: ignore early configure calls

At this point, not everything has been setup and we crash when trying
to convert the surface pointer to a terminal pointer.
This commit is contained in:
Daniel Eklöf 2020-01-02 17:25:41 +01:00
parent eb1ea2d80d
commit 4a9f359a6a
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -411,6 +411,9 @@ xdg_toplevel_configure(void *data, struct xdg_toplevel *xdg_toplevel,
{
LOG_DBG("xdg-toplevel: configure: %dx%d", width, height);
if (width == 0 && height == 0)
return;
struct wayland *wayl = data;
struct terminal *term = wayl_terminal_from_xdg_toplevel(wayl, xdg_toplevel);
@ -423,9 +426,7 @@ xdg_toplevel_configure(void *data, struct xdg_toplevel *xdg_toplevel,
}
term->visual_focus = is_focused;
if (width >= 0 && height >= 0)
render_resize(term, width, height);
render_resize(term, width, height);
}
static void