summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordustinsth <dustinst@outlook.com>2022-12-20 09:57:10 -0800
committerdustinsth <dustinst@outlook.com>2022-12-20 09:57:57 -0800
commitc734ae469e1b43992ff9af05956356129fe3c364 (patch)
tree97a9e094470395ae083976a9fb27e8c665731ea1
parent2a04b18d37de6c6e621db5a9dfd1cd0da5ccb015 (diff)
Fix overlapping text in Advanced Import Settings action dialogs.
-rw-r--r--editor/import/scene_import_settings.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/import/scene_import_settings.cpp b/editor/import/scene_import_settings.cpp
index 1e406e6d17..380a4e370c 100644
--- a/editor/import/scene_import_settings.cpp
+++ b/editor/import/scene_import_settings.cpp
@@ -958,15 +958,15 @@ void SceneImportSettings::_notification(int p_what) {
void SceneImportSettings::_menu_callback(int p_id) {
switch (p_id) {
case ACTION_EXTRACT_MATERIALS: {
- save_path->set_text(TTR("Select folder to extract material resources"));
+ save_path->set_title(TTR("Select folder to extract material resources"));
external_extension_type->select(0);
} break;
case ACTION_CHOOSE_MESH_SAVE_PATHS: {
- save_path->set_text(TTR("Select folder where mesh resources will save on import"));
+ save_path->set_title(TTR("Select folder where mesh resources will save on import"));
external_extension_type->select(1);
} break;
case ACTION_CHOOSE_ANIMATION_SAVE_PATHS: {
- save_path->set_text(TTR("Select folder where animations will save on import"));
+ save_path->set_title(TTR("Select folder where animations will save on import"));
external_extension_type->select(1);
} break;
}