mirror of
https://github.com/profanity-im/profanity.git
synced 2025-01-03 14:57:42 -05:00
Merge pull request #1808 from MarcoPolo-PasTonMolo/fix/empty_window_after_reconnect
Fix empty window after reconnect
This commit is contained in:
commit
a086cfbc78
@ -160,7 +160,7 @@ sv_ev_roster_received(void)
|
|||||||
// Redraw the screen after entry of the PGP secret key, but not init
|
// Redraw the screen after entry of the PGP secret key, but not init
|
||||||
ProfWin* win = wins_get_current();
|
ProfWin* win = wins_get_current();
|
||||||
char* theme = prefs_get_string(PREF_THEME);
|
char* theme = prefs_get_string(PREF_THEME);
|
||||||
win_clear(win);
|
win_redraw(win);
|
||||||
theme_init(theme);
|
theme_init(theme);
|
||||||
g_free(theme);
|
g_free(theme);
|
||||||
ui_resize();
|
ui_resize();
|
||||||
|
@ -1367,6 +1367,10 @@ void
|
|||||||
win_clear(ProfWin* window)
|
win_clear(ProfWin* window)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
void
|
||||||
|
win_redraw(ProfWin* window)
|
||||||
|
{
|
||||||
|
}
|
||||||
char*
|
char*
|
||||||
win_to_string(ProfWin* window)
|
win_to_string(ProfWin* window)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user