summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Davenport <qball@blame.services>2021-12-15 20:49:53 +0100
committerDave Davenport <qball@blame.services>2021-12-15 20:49:53 +0100
commit8f5d9b425e7a1e7a30b26cbb630487114ff38b47 (patch)
treeb45a128b4b97502c8cc89477486e5577a60fa6e7
parent555f9be1f7e52cf736455d06cdc1f475c889c709 (diff)
[KeyBindings] Fix keybinding modified by -theme-str.
-rw-r--r--source/rofi.c3
1 files changed, 1 insertions, 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();