From 8f5d9b425e7a1e7a30b26cbb630487114ff38b47 Mon Sep 17 00:00:00 2001 From: Dave Davenport Date: Wed, 15 Dec 2021 20:49:53 +0100 Subject: [PATCH] [KeyBindings] Fix keybinding modified by -theme-str. --- source/rofi.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/rofi.c b/source/rofi.c index b640e5d5..4489999c 100644 --- a/source/rofi.c +++ b/source/rofi.c @@ -963,8 +963,6 @@ int main(int argc, char *argv[]) { } TICK_N("Load cmd config "); - parse_keys_abe(bindings); - // Get the path to the cache dir. cache_dir = g_get_user_cache_dir(); @@ -1010,6 +1008,7 @@ int main(int argc, char *argv[]) { g_free(theme_str); } + parse_keys_abe(bindings); if (find_arg("-dump-theme") >= 0) { rofi_theme_print(rofi_theme); cleanup();