1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-16 06:25:24 +00:00

make deinitialization between screen_refresh_freeze() and

screen_refresh_thaw() so screen won't get redrawn needlessly


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1184 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-02-05 01:06:42 +00:00 committed by cras
parent 7612cf4773
commit 3f113f51b9

View File

@ -148,10 +148,12 @@ static void textui_deinit(void)
quitting = TRUE;
signal(SIGINT, SIG_DFL);
screen_refresh_freeze();
while (modules != NULL)
module_unload(modules->data);
signal_remove("gui exit", (SIGNAL_FUNC) sig_exit);
gui_textwidget_deinit();
statusbar_deinit();
gui_printtext_deinit();
@ -161,6 +163,8 @@ static void textui_deinit(void)
mainwindows_deinit();
gui_expandos_deinit();
gui_entry_deinit();
screen_refresh_thaw();
deinit_screen();
#ifdef HAVE_STATIC_PERL