changeset 18077:2141130ac557

This got lost from a merge I think. This refixes #532.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Tue, 12 Jun 2007 20:44:44 +0000
parents da183b86a3ef
children 19e6c7249c20
files finch/libgnt/gntwm.c
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/finch/libgnt/gntwm.c	Sun Jun 10 15:41:14 2007 +0000
+++ b/finch/libgnt/gntwm.c	Tue Jun 12 20:44:44 2007 +0000
@@ -1029,12 +1029,11 @@
 	GntWM *wm = GNT_WM(bindable);
 
 	endwin();
-	refresh();
-	curs_set(0);   /* endwin resets the cursor to normal */
 
 	g_hash_table_foreach(wm->nodes, (GHFunc)refresh_node, NULL);
 	update_screen(wm);
 	gnt_ws_draw_taskbar(wm->cws, TRUE);
+	curs_set(0);   /* endwin resets the cursor to normal */
 
 	return FALSE;
 }