comparison finch/libgnt/gntwm.c @ 29303:8bacc2a70576

gnt: Restore hardware cursor after reordering windows.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Thu, 28 Jan 2010 05:06:24 +0000
parents 4ecb1cc48e3c
children 06144d315c08
comparison
equal deleted inserted replaced
29302:5a64fd0f740b 29303:8bacc2a70576
887 887
888 all = g_list_insert(all, widget, pos); 888 all = g_list_insert(all, widget, pos);
889 all = g_list_delete_link(all, list); 889 all = g_list_delete_link(all, list);
890 wm->cws->list = all; 890 wm->cws->list = all;
891 gnt_ws_draw_taskbar(wm->cws, FALSE); 891 gnt_ws_draw_taskbar(wm->cws, FALSE);
892 if (wm->cws->ordered) {
893 GntWidget *w = wm->cws->ordered->data;
894 GntNode *node = g_hash_table_lookup(wm->nodes, w);
895 top_panel(node->panel);
896 update_panels();
897 doupdate();
898 }
892 } 899 }
893 900
894 static gboolean 901 static gboolean
895 shift_left(GntBindable *bindable, GList *null) 902 shift_left(GntBindable *bindable, GList *null)
896 { 903 {