aboutsummaryrefslogtreecommitdiff
path: root/editor/editor_settings.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2017-08-20 22:23:21 +0200
committerRémi Verschelde2017-08-20 22:23:58 +0200
commit35d57245193d37ac8cba5e2c8df7957f0239b19d (patch)
tree9bcef18ace75a1b3173b18c8db7babc6a8766c8a /editor/editor_settings.cpp
parent834112772b9cb1f7c1ca04b43ab26e23acb149bc (diff)
downloadgodot-35d57245193d37ac8cba5e2c8df7957f0239b19d.tar.gz
godot-35d57245193d37ac8cba5e2c8df7957f0239b19d.tar.zst
godot-35d57245193d37ac8cba5e2c8df7957f0239b19d.zip
Fix mismatched hints for filesystem/import/pvrtc_texture_tool
Diffstat (limited to '')
-rw-r--r--editor/editor_settings.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/editor/editor_settings.cpp b/editor/editor_settings.cpp
index 65eb341b9..46135e80a 100644
--- a/editor/editor_settings.cpp
+++ b/editor/editor_settings.cpp
@@ -724,11 +724,10 @@ void EditorSettings::_load_defaults(Ref<ConfigFile> p_extra_config) {
set("filesystem/import/pvrtc_texture_tool", "");
#ifdef WINDOWS_ENABLED
- hints["filesystem/import/pvrtc_texture_tool"] = PropertyInfo(Variant::STRING, "import/pvrtc_texture_tool", PROPERTY_HINT_GLOBAL_FILE, "*.exe");
+ hints["filesystem/import/pvrtc_texture_tool"] = PropertyInfo(Variant::STRING, "filesystem/import/pvrtc_texture_tool", PROPERTY_HINT_GLOBAL_FILE, "*.exe");
#else
- hints["import/pvrtc_texture_tool"] = PropertyInfo(Variant::STRING, "import/pvrtc_texture_tool", PROPERTY_HINT_GLOBAL_FILE, "");
+ hints["filesystem/import/pvrtc_texture_tool"] = PropertyInfo(Variant::STRING, "filesystem/import/pvrtc_texture_tool", PROPERTY_HINT_GLOBAL_FILE, "");
#endif
- // TODO: Rename to "filesystem/import/pvrtc_fast_conversion" to match other names?
set("filesystem/import/pvrtc_fast_conversion", false);
set("run/auto_save/save_before_running", true);