1
0
mirror of https://github.com/profanity-im/profanity.git synced 2025-01-03 14:57:42 -05:00

Merge pull request #1344 from DebXWoody/bugfix/1327

Bugfix: Status with PGP shows offline in titlebar
This commit is contained in:
Michael Vetter 2020-05-28 20:47:48 +02:00 committed by GitHub
commit 4c047b0cb5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -150,13 +150,12 @@ sv_ev_roster_received(void)
}
free(err_str);
// Redraw the screen after entry of the PGP secret key
// Redraw the screen after entry of the PGP secret key, but not init
ProfWin *win = wins_get_current();
char *theme = prefs_get_string(PREF_THEME);
win_clear(win);
theme_init(theme);
prefs_free_string(theme);
ui_init();
ui_resize();
ui_show_roster();
}