comparison finch/libgnt/gntwm.c @ 17251:8d3c28521112

I think this fixes #532.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Wed, 23 May 2007 06:23:01 +0000
parents e5cc13b1e0ca
children c0c17a81f5fe
comparison
equal deleted inserted replaced
17250:ffd85797ecab 17251:8d3c28521112
978 refresh_screen(GntBindable *bindable, GList *null) 978 refresh_screen(GntBindable *bindable, GList *null)
979 { 979 {
980 GntWM *wm = GNT_WM(bindable); 980 GntWM *wm = GNT_WM(bindable);
981 981
982 endwin(); 982 endwin();
983 refresh();
984 curs_set(0); /* endwin resets the cursor to normal */
985 983
986 g_hash_table_foreach(wm->nodes, (GHFunc)refresh_node, NULL); 984 g_hash_table_foreach(wm->nodes, (GHFunc)refresh_node, NULL);
987 update_screen(wm); 985 update_screen(wm);
988 draw_taskbar(wm, TRUE); 986 draw_taskbar(wm, TRUE);
987 curs_set(0); /* endwin resets the cursor to normal */
989 988
990 return FALSE; 989 return FALSE;
991 } 990 }
992 991
993 static gboolean 992 static gboolean