Merge pull request #90003 from AlexOtsuka/fix-animation-save-paths
Fix Set Animation Save Paths breaking on Windows
This commit is contained in:
commit
77a9cf0ce8
@ -1343,6 +1343,7 @@ void SceneImportSettingsDialog::_save_dir_callback(const String &p_path) {
|
||||
item->set_metadata(0, E.key);
|
||||
item->set_editable(0, true);
|
||||
item->set_checked(0, true);
|
||||
name = name.validate_filename();
|
||||
String path = p_path.path_join(name);
|
||||
if (external_extension_type->get_selected() == 0) {
|
||||
path += ".tres";
|
||||
@ -1396,6 +1397,7 @@ void SceneImportSettingsDialog::_save_dir_callback(const String &p_path) {
|
||||
item->set_metadata(0, E.key);
|
||||
item->set_editable(0, true);
|
||||
item->set_checked(0, true);
|
||||
name = name.validate_filename();
|
||||
String path = p_path.path_join(name);
|
||||
if (external_extension_type->get_selected() == 0) {
|
||||
path += ".tres";
|
||||
@ -1448,6 +1450,7 @@ void SceneImportSettingsDialog::_save_dir_callback(const String &p_path) {
|
||||
item->set_metadata(0, E.key);
|
||||
item->set_editable(0, true);
|
||||
item->set_checked(0, true);
|
||||
name = name.validate_filename();
|
||||
String path = p_path.path_join(name);
|
||||
if (external_extension_type->get_selected() == 0) {
|
||||
path += ".tres";
|
||||
|
Loading…
Reference in New Issue
Block a user