diff options
author | adnano <me@adnano.co> | 2024-12-16 10:56:51 -0500 |
---|---|---|
committer | adnano <me@adnano.co> | 2024-12-16 10:56:51 -0500 |
commit | e2542d34ed15308545125fac9bf324b32e7cf578 (patch) | |
tree | 7a7681809ef60bffa6ca292074aa58b76deab032 | |
parent | 3ad4b5ca3f9f66c71ec521d0d7261228ec7b4631 (diff) | |
download | wmenu-e2542d34ed15308545125fac9bf324b32e7cf578.tar.gz |
Render frame on surface enter
This ensures that the menu is rendered with the correct scale.
Fixes #14
-rw-r--r-- | wayland.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 = { |