summaryrefslogtreecommitdiffstats
path: root/editor/project_manager
diff options
context:
space:
mode:
authorGrublady <nucleon.spite_0x@icloud.com>2024-07-06 18:49:33 -0400
committerGrublady <nucleon.spite_0x@icloud.com>2024-07-08 17:10:12 -0400
commit5583ac521818579b8d2ebdd95b64e46948c43684 (patch)
tree14404ad54e86673478ef1aef4cfc7a28ebaa15c7 /editor/project_manager
parentb97110cd307e4d78e20bfafe5de6c082194b2cd6 (diff)
downloadredot-engine-5583ac521818579b8d2ebdd95b64e46948c43684.tar.gz
Ignore trailing slashes in new project’s path when disabling Create Folder
In the “Create New Project” dialog, disabling the “Create Folder” slider with a trailing slash in the project path would cause it to incorrectly identify the last path component as the substring following the slash, in other words, an empty string. By first discarding any trailing slashes when disabling the slider, the project dialog will now identify and pop the last path component as usual even when a trailing slash is present.
Diffstat (limited to 'editor/project_manager')
-rw-r--r--editor/project_manager/project_dialog.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/project_manager/project_dialog.cpp b/editor/project_manager/project_dialog.cpp
index 262a1ecc1a..be5fa8745c 100644
--- a/editor/project_manager/project_dialog.cpp
+++ b/editor/project_manager/project_dialog.cpp
@@ -315,6 +315,8 @@ void ProjectDialog::_create_dir_toggled(bool p_pressed) {
target_path = target_path.path_join(last_custom_target_dir);
}
} else {
+ // Strip any trailing slash.
+ target_path = target_path.rstrip("/\\");
// Save and remove target dir name.
if (target_path.get_file() == auto_dir) {
last_custom_target_dir = "";