mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 14:12:51 +00:00
trims_whitespaces_when_creating_folder_windows
When creating a Windows folder via a Godot's dialog, the extra spaces are not removed which causes problems with Windows. We now remove leading and trailing whitespace when creating a dir.
This commit is contained in:
parent
942f5f0cb2
commit
c8538153b0
@ -1076,9 +1076,9 @@ EditorFileDialog::Access EditorFileDialog::get_access() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void EditorFileDialog::_make_dir_confirm() {
|
void EditorFileDialog::_make_dir_confirm() {
|
||||||
Error err = dir_access->make_dir(makedirname->get_text());
|
Error err = dir_access->make_dir(makedirname->get_text().strip_edges());
|
||||||
if (err == OK) {
|
if (err == OK) {
|
||||||
dir_access->change_dir(makedirname->get_text());
|
dir_access->change_dir(makedirname->get_text().strip_edges());
|
||||||
invalidate();
|
invalidate();
|
||||||
update_filters();
|
update_filters();
|
||||||
update_dir();
|
update_dir();
|
||||||
|
@ -731,9 +731,9 @@ FileDialog::Access FileDialog::get_access() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void FileDialog::_make_dir_confirm() {
|
void FileDialog::_make_dir_confirm() {
|
||||||
Error err = dir_access->make_dir(makedirname->get_text());
|
Error err = dir_access->make_dir(makedirname->get_text().strip_edges());
|
||||||
if (err == OK) {
|
if (err == OK) {
|
||||||
dir_access->change_dir(makedirname->get_text());
|
dir_access->change_dir(makedirname->get_text().strip_edges());
|
||||||
invalidate();
|
invalidate();
|
||||||
update_filters();
|
update_filters();
|
||||||
update_dir();
|
update_dir();
|
||||||
|
Loading…
Reference in New Issue
Block a user