mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-14 04:31:09 +00:00
Fix error_selecting_folder_over_existing_file_dialog() never displaying message
https://bugzilla.gnome.org/show_bug.cgi?id=700864
This commit is contained in:
parent
b940122c4a
commit
84513df5a7
@ -772,13 +772,11 @@ error_filename_to_long_dialog (GtkFileChooserDefault *impl)
|
||||
* the same name is already there.
|
||||
*/
|
||||
static void
|
||||
error_selecting_folder_over_existing_file_dialog (GtkFileChooserDefault *impl,
|
||||
GFile *file)
|
||||
error_selecting_folder_over_existing_file_dialog (GtkFileChooserDefault *impl)
|
||||
{
|
||||
error_dialog (impl,
|
||||
_("You may only select folders. The item that you selected is not a folder; "
|
||||
"try using a different item."),
|
||||
file, NULL);
|
||||
error_message (impl,
|
||||
_("You may only select folders"),
|
||||
_("The item that you selected is not a folder try using a different item."));
|
||||
}
|
||||
|
||||
/* Shows an error dialog about not being able to create a filename */
|
||||
@ -5782,7 +5780,7 @@ file_exists_get_info_cb (GCancellable *cancellable,
|
||||
request_response_and_add_to_recent_list (impl);
|
||||
}
|
||||
else
|
||||
error_selecting_folder_over_existing_file_dialog (impl, data->file);
|
||||
error_selecting_folder_over_existing_file_dialog (impl);
|
||||
}
|
||||
}
|
||||
else if (priv->action == GTK_FILE_CHOOSER_ACTION_SAVE)
|
||||
|
Loading…
Reference in New Issue
Block a user