gtk: Enable create folder in dialog.

This commit is contained in:
Cheng Zhao 2014-03-13 13:27:01 +08:00
parent 637a99ea66
commit 4c63307ae7

View file

@ -32,6 +32,8 @@ class FileChooserDialog {
if (action == GTK_FILE_CHOOSER_ACTION_SAVE)
gtk_file_chooser_set_do_overwrite_confirmation(GTK_FILE_CHOOSER(dialog_),
TRUE);
if (action != GTK_FILE_CHOOSER_ACTION_OPEN)
gtk_file_chooser_set_create_folders(GTK_FILE_CHOOSER(dialog_), TRUE);
// Set window-to-parent modality by adding the dialog to the same window
// group as the parent.