1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Texture format error on export: Show project setting

Changing the project setting manually will prompt for a restart, which
will trigger the required re-import of textures.
Previously the project setting would be changed automatically but
textures would not be re-imported, which could be unexpected.
This commit is contained in:
Ricardo Buring
2025-06-01 13:23:04 +02:00
parent e45cc68092
commit e521d69d39
4 changed files with 19 additions and 10 deletions

View File

@@ -80,6 +80,10 @@ void ProjectSettingsEditor::popup_for_override(const String &p_override) {
general_settings_inspector->set_current_section(ProjectSettings::EDITOR_SETTING_OVERRIDE_PREFIX + p_override.get_slicec('/', 0));
}
void ProjectSettingsEditor::set_filter(const String &p_filter) {
search_box->set_text(p_filter);
}
void ProjectSettingsEditor::queue_save() {
settings_changed = true;
timer->start();