set and unset busy cursor while checking whether the given path is a

2005-12-23  Kristian Rietveld  <kris@imendio.com>

	* gtk/gtkfilechooserdefault.c (update_current_folder_get_info_cb),
	(gtk_file_chooser_default_update_current_folder): set and unset
	busy cursor while checking whether the given path is a folder.
This commit is contained in:
Kristian Rietveld
2005-12-23 16:04:41 +00:00
committed by Kristian Rietveld
parent 77a5e4877d
commit 5a72f83bc8
3 changed files with 16 additions and 0 deletions

View File

@@ -1,3 +1,9 @@
2005-12-23 Kristian Rietveld <kris@imendio.com>
* gtk/gtkfilechooserdefault.c (update_current_folder_get_info_cb),
(gtk_file_chooser_default_update_current_folder): set and unset
busy cursor while checking whether the given path is a folder.
2005-12-23 Kristian Rietveld <kris@imendio.com>
* gtk/gtkfilesystem.h: change the GtkFileInfo argument of the

View File

@@ -1,3 +1,9 @@
2005-12-23 Kristian Rietveld <kris@imendio.com>
* gtk/gtkfilechooserdefault.c (update_current_folder_get_info_cb),
(gtk_file_chooser_default_update_current_folder): set and unset
busy cursor while checking whether the given path is a folder.
2005-12-23 Kristian Rietveld <kris@imendio.com>
* gtk/gtkfilesystem.h: change the GtkFileInfo argument of the

View File

@@ -5765,6 +5765,8 @@ update_current_folder_get_info_cb (GtkFileSystemHandle *handle,
g_object_unref (handle);
impl->update_current_folder_handle = NULL;
set_busy_cursor (impl, FALSE);
if (cancelled)
goto out;
@@ -5868,6 +5870,8 @@ gtk_file_chooser_default_update_current_folder (GtkFileChooser *chooser,
update_current_folder_get_info_cb,
data);
set_busy_cursor (impl, TRUE);
profile_end ("end", NULL);
return TRUE;
}