Bump deleted item removal to a higher priority.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@11937 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
David Hampton 2005-11-14 23:43:50 +00:00
parent 5ee99a4cea
commit 968730a00e
3 changed files with 18 additions and 2 deletions

View File

@ -1,3 +1,17 @@
2005-11-14 David Hampton <hampton@employees.org>
* src/gnome-utils/gnc-tree-model-commodity.c:
* src/gnome-utils/gnc-tree-model-price.c: Bump deleted item
removal to a higher priority.
* src/gnome-utils/gnc-tree-model-account.c: Correctly update the
tree model when an account is moved. Fixes #313782.
* src/gnome-utils/gnc-date-edit.c:
* src/gnome/window-reconcile.c:
* src/gnome/dialog-scheduledxaction.c: Replace deprecated
gtk_window_set_policy() function with gtk_window_set_resizable().
2005-11-14 Christian Stimming <stimming@tuhh.de>
* po/glossary/gnc-glossary.txt: Add explanations to new strings in

View File

@ -1202,7 +1202,8 @@ gnc_tree_model_commodity_event_handler (GUID *entity, QofIdType type,
data->model = model;
data->path = path;
pending_removals = g_slist_append (pending_removals, data);
g_idle_add (gnc_tree_model_commodity_do_deletions, NULL);
g_idle_add_full(G_PRIORITY_HIGH_IDLE,
gnc_tree_model_commodity_do_deletions, NULL, NULL);
LEAVE(" ");
return;

View File

@ -1547,7 +1547,8 @@ gnc_tree_model_price_event_handler (GUID *entity, QofIdType type,
data->model = model;
data->path = path;
pending_removals = g_slist_append (pending_removals, data);
g_idle_add (gnc_tree_model_price_do_deletions, NULL);
g_idle_add_full(G_PRIORITY_HIGH_IDLE,
gnc_tree_model_price_do_deletions, NULL, NULL);
LEAVE(" ");
return;