Show an error dialog when we can't read the folder's contents
Signed-off-by: Federico Mena Quintero <federico@novell.com>
This commit is contained in:
parent
3b86973075
commit
ccee7ef4fb
@ -6386,6 +6386,29 @@ pending_select_files_process (GtkFileChooserDefault *impl)
|
|||||||
g_assert (impl->pending_select_files == NULL);
|
g_assert (impl->pending_select_files == NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
show_error_on_reading_current_folder (GtkFileChooserDefault *impl, GError *error)
|
||||||
|
{
|
||||||
|
GFileInfo *info;
|
||||||
|
char *msg;
|
||||||
|
|
||||||
|
info = g_file_query_info (impl->current_folder,
|
||||||
|
G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME,
|
||||||
|
G_FILE_QUERY_INFO_NONE,
|
||||||
|
NULL,
|
||||||
|
NULL);
|
||||||
|
if (info)
|
||||||
|
{
|
||||||
|
msg = g_strdup (_("Could not read the contents of %s"), g_file_info_get_display_name (info));
|
||||||
|
g_object_unref (info);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
msg = g_strdup (_("Could not read the contents of the folder"));
|
||||||
|
|
||||||
|
error_message (impl, msg, error->message);
|
||||||
|
g_free (msg);
|
||||||
|
}
|
||||||
|
|
||||||
/* Callback used when the file system model finishes loading */
|
/* Callback used when the file system model finishes loading */
|
||||||
static void
|
static void
|
||||||
browse_files_model_finished_loading_cb (GtkFileSystemModel *model,
|
browse_files_model_finished_loading_cb (GtkFileSystemModel *model,
|
||||||
@ -6394,6 +6417,9 @@ browse_files_model_finished_loading_cb (GtkFileSystemModel *model,
|
|||||||
{
|
{
|
||||||
profile_start ("start", NULL);
|
profile_start ("start", NULL);
|
||||||
|
|
||||||
|
if (error)
|
||||||
|
show_error_on_reading_current_folder (impl, error);
|
||||||
|
|
||||||
if (impl->load_state == LOAD_PRELOAD)
|
if (impl->load_state == LOAD_PRELOAD)
|
||||||
{
|
{
|
||||||
load_remove_timer (impl);
|
load_remove_timer (impl);
|
||||||
|
Loading…
Reference in New Issue
Block a user