From 125664afd5680308a6e72ba88a1343edf66f1487 Mon Sep 17 00:00:00 2001 From: Maarten van Gompel Date: Mon, 25 Nov 2024 12:31:19 +0100 Subject: [PATCH] use OVERLAY so keyboard is visible over fullscreen windows as well Ref: https://github.com/jjsullivan5196/wvkbd/issues/73 --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index f3970e6..5ec1c45 100644 --- a/main.c +++ b/main.c @@ -65,7 +65,7 @@ static struct drw draw_ctx; static struct drwsurf draw_surf, popup_draw_surf; /* layer surface parameters */ -static uint32_t layer = ZWLR_LAYER_SHELL_V1_LAYER_TOP; +static uint32_t layer = ZWLR_LAYER_SHELL_V1_LAYER_OVERLAY; static uint32_t anchor = ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM | ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT | ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT;