summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2020-11-06 23:05:29 +0100
committerHugo Locurcio <hugo.locurcio@hugo.pro>2020-11-06 23:09:44 +0100
commit0f9432f0609d1e6b64a4038047777c3c108bc047 (patch)
tree47cb42f74b82997b554ec05123745b51a5d24112
parentdfed88b11ff1a3315f1f276ff30cbaaf05e6d7b7 (diff)
Allow using SVG images as project icon
Since exporters will save their own icon, the target platforms don't have to support SVG to display the icon correctly. This closes #23068.
-rw-r--r--main/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.cpp b/main/main.cpp
index 1866228a23..e3b0f66f07 100644
--- a/main/main.cpp
+++ b/main/main.cpp
@@ -1608,7 +1608,7 @@ Error Main::setup2(Thread::ID p_main_tid_override) {
GLOBAL_DEF("application/config/icon", String());
ProjectSettings::get_singleton()->set_custom_property_info("application/config/icon",
PropertyInfo(Variant::STRING, "application/config/icon",
- PROPERTY_HINT_FILE, "*.png,*.webp"));
+ PROPERTY_HINT_FILE, "*.png,*.webp,*.svg,*.svgz"));
GLOBAL_DEF("application/config/macos_native_icon", String());
ProjectSettings::get_singleton()->set_custom_property_info("application/config/macos_native_icon",