From 202d249c7895ef0682d984271bbe0548042fd7a4 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Sun, 5 Mar 2023 19:29:31 +0100 Subject: [PATCH] config: keyboard.popovers = true Enable keyboard popovers by default. This feature is also enabled in osk-sdl by default, so have it here too in order to not have a regression for users when switching from osk-sdl to unl0kr. --- config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.c b/config.c index 213c655..22a0163 100644 --- a/config.c +++ b/config.c @@ -80,7 +80,7 @@ static void init_opts(ul_config_opts *opts) { opts->general.timeout = 0; opts->keyboard.autohide = true; opts->keyboard.layout_id = SQ2LV_LAYOUT_US; - opts->keyboard.popovers = false; + opts->keyboard.popovers = true; opts->textarea.obscured = true; opts->textarea.bullet = LV_SYMBOL_BULLET; opts->theme.default_id = UL_THEMES_THEME_BREEZY_DARK;