Fixes #3942 - Throws an error when exporting for X11 with no filename

This commit is contained in:
demolitions 2016-03-18 23:37:31 +01:00
parent db81ef92b5
commit fb58bafc54
1 changed files with 8 additions and 1 deletions

View File

@ -467,6 +467,14 @@ void ProjectExportDialog::_export_action(const String& p_file) {
location=nl; location=nl;
} }
/* Checked if the export location is outside the project directory,
* now will check if a file name has been entered */
if (p_file.ends_with("/")) {
error->set_text("Please enter a file name!");
error->popup_centered_minsize();
return;
}
TreeItem *selected = platforms->get_selected(); TreeItem *selected = platforms->get_selected();
if (!selected) if (!selected)
@ -1908,4 +1916,3 @@ ProjectExport::ProjectExport(EditorData* p_data) {
} }