1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00

Use title_bar_draw in title_bar_refresh

This commit is contained in:
James Booth 2014-01-16 19:58:21 +00:00
parent 69a63bd225
commit 682601d479

View File

@ -86,13 +86,10 @@ _title_bar_refresh(void)
free(current_title); free(current_title);
current_title = strdup(current_recipient); current_title = strdup(current_recipient);
title_bar_draw();
g_timer_destroy(typing_elapsed); g_timer_destroy(typing_elapsed);
typing_elapsed = NULL; typing_elapsed = NULL;
wrefresh(win); title_bar_draw();
inp_put_back();
} }
} }
} }