From e2542d34ed15308545125fac9bf324b32e7cf578 Mon Sep 17 00:00:00 2001 From: adnano Date: Mon, 16 Dec 2024 10:56:51 -0500 Subject: Render frame on surface enter This ensures that the menu is rendered with the correct scale. Fixes #14 --- wayland.c | 1 + 1 file changed, 1 insertion(+) diff --git a/wayland.c b/wayland.c index 0d3f261..6ce5b77 100644 --- a/wayland.c +++ b/wayland.c @@ -208,6 +208,7 @@ static void noop() { static void surface_enter(void *data, struct wl_surface *surface, struct wl_output *wl_output) { struct wl_context *context = data; context->output = wl_output_get_user_data(wl_output); + menu_render_items(context->menu); } static const struct wl_surface_listener surface_listener = { -- cgit v1.2.3