[Gnucash-changes] r13162 - gnucash/trunk/src/gnome - Set the busy
cursor while the dialogs are being generated.
David Hampton
hampton at cvs.gnucash.org
Wed Feb 8 23:35:34 EST 2006
Author: hampton
Date: 2006-02-08 23:35:34 -0500 (Wed, 08 Feb 2006)
New Revision: 13162
Trac: http://svn.gnucash.org/trac/changeset/13162
Modified:
gnucash/trunk/src/gnome/gnc-plugin-basic-commands.c
Log:
Set the busy cursor while the dialogs are being generated.
Modified: gnucash/trunk/src/gnome/gnc-plugin-basic-commands.c
===================================================================
--- gnucash/trunk/src/gnome/gnc-plugin-basic-commands.c 2006-02-09 04:34:28 UTC (rev 13161)
+++ gnucash/trunk/src/gnome/gnc-plugin-basic-commands.c 2006-02-09 04:35:34 UTC (rev 13162)
@@ -451,13 +451,17 @@
static void
gnc_main_window_cmd_tools_price_editor (GtkAction *action, GncMainWindowActionData *data)
{
+ gnc_set_busy_cursor(NULL, TRUE);
gnc_prices_dialog (NULL);
+ gnc_unset_busy_cursor(NULL);
}
static void
gnc_main_window_cmd_tools_commodity_editor (GtkAction *action, GncMainWindowActionData *data)
{
+ gnc_set_busy_cursor(NULL, TRUE);
gnc_commodities_dialog (NULL);
+ gnc_unset_busy_cursor(NULL);
}
static void
More information about the gnucash-changes
mailing list