diff options
author | Michael Vetter <jubalh@iodoru.org> | 2020-02-20 16:50:17 +0100 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2020-02-20 16:50:17 +0100 |
commit | 280b718cfb592f2eae317bf298a96a71fdf7dff9 (patch) | |
tree | ebe008ea1b5e44628d525d3dd9940c6da799dd99 /src/config | |
parent | 3ab4ae45f015af2c921ced0ce0aba29f6afdce8e (diff) | |
download | profani-tty-280b718cfb592f2eae317bf298a96a71fdf7dff9.tar.gz |
Fix theme setting correction char
Copy paste error. We actually set the omemo char..
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/theme.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/theme.c b/src/config/theme.c index f7842bab..072dc3a8 100644 --- a/src/config/theme.c +++ b/src/config/theme.c @@ -486,7 +486,7 @@ _load_preferences(void) if (g_key_file_has_key(theme, "ui", "correction.char", NULL)) { gchar *ch = g_key_file_get_string(theme, "ui", "correction.char", NULL); if (ch && strlen(ch) > 0) { - prefs_set_omemo_char(ch[0]); + prefs_set_correction_char(ch[0]); g_free(ch); } } |