* src/summaryview.c

also wait cursor when deleting files
This commit is contained in:
Alfons Hoogervorst 2003-02-23 20:55:37 +00:00
parent afb847fe96
commit 4524272399
3 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2003-02-23 [alfons]
* src/summaryview.c
also wait cursor when deleting files
2003-02-23 [paul]
* tools/freshmeat_search.pl

View file

@ -11,7 +11,7 @@ MINOR_VERSION=8
MICRO_VERSION=10
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=claws45
EXTRA_VERSION=claws46
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
dnl set $target

View file

@ -3061,6 +3061,8 @@ void summary_delete(SummaryView *summaryview)
if (aval != G_ALERTDEFAULT) return;
}
main_window_cursor_wait(summaryview->mainwin);
/* next code sets current row focus right. We need to find a row
* that is not deleted. */
folder_item_update_freeze();
@ -3093,6 +3095,8 @@ void summary_delete(SummaryView *summaryview)
gtk_sctree_set_anchor_row(GTK_SCTREE(ctree), node);
} else
summary_status_show(summaryview);
main_window_cursor_normal(summaryview->mainwin);
}
void summary_delete_duplicated(SummaryView *summaryview)