mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 14:12:51 +00:00
Fix changing the import type of multiple files at once
This commit is contained in:
parent
94fab21348
commit
6d6af0ea06
@ -450,8 +450,8 @@ void ImportDock::_reimport() {
|
||||
|
||||
String importer_name = params->importer->get_importer_name();
|
||||
|
||||
if (params->checking) {
|
||||
//update only what edited (checkboxes)
|
||||
if (params->checking && config->get_value("remap", "importer") == params->importer->get_importer_name()) {
|
||||
//update only what is edited (checkboxes) if the importer is the same
|
||||
for (List<PropertyInfo>::Element *E = params->properties.front(); E; E = E->next()) {
|
||||
if (params->checked.has(E->get().name)) {
|
||||
config->set_value("params", E->get().name, params->values[E->get().name]);
|
||||
@ -558,7 +558,7 @@ ImportDock::ImportDock() {
|
||||
hb->add_spacer();
|
||||
|
||||
reimport_confirm = memnew(ConfirmationDialog);
|
||||
reimport_confirm->get_ok()->set_text(TTR("Save scenes, re-import and restart"));
|
||||
reimport_confirm->get_ok()->set_text(TTR("Save Scenes, Re-Import, and Restart"));
|
||||
add_child(reimport_confirm);
|
||||
reimport_confirm->connect("confirmed", callable_mp(this, &ImportDock::_reimport_and_restart));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user