diff options
author | kobewi <kobewi4e@gmail.com> | 2024-09-02 14:04:02 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-09-17 12:20:55 +0200 |
commit | 4023ace08d4c5d91fa9d1096a0a0b98885a475e1 (patch) | |
tree | ca6e52ab9597e0ba908fc7471f501252aff870a4 /platform/windows/export/export.cpp | |
parent | 02b16d2f544e323b7b7f57e6e992b0b8e5d8b954 (diff) | |
download | redot-engine-4023ace08d4c5d91fa9d1096a0a0b98885a475e1.tar.gz |
Add Advanced Settings switch to Editor Settings
Diffstat (limited to 'platform/windows/export/export.cpp')
-rw-r--r-- | platform/windows/export/export.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/platform/windows/export/export.cpp b/platform/windows/export/export.cpp index a062963c2e..8c963e9a9d 100644 --- a/platform/windows/export/export.cpp +++ b/platform/windows/export/export.cpp @@ -41,16 +41,16 @@ void register_windows_exporter_types() { void register_windows_exporter() { // TODO: Move to editor_settings.cpp #ifndef ANDROID_ENABLED - EDITOR_DEF("export/windows/rcedit", ""); + EDITOR_DEF_BASIC("export/windows/rcedit", ""); EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::STRING, "export/windows/rcedit", PROPERTY_HINT_GLOBAL_FILE, "*.exe")); #ifdef WINDOWS_ENABLED - EDITOR_DEF("export/windows/signtool", ""); + EDITOR_DEF_BASIC("export/windows/signtool", ""); EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::STRING, "export/windows/signtool", PROPERTY_HINT_GLOBAL_FILE, "*.exe")); #else - EDITOR_DEF("export/windows/osslsigncode", ""); + EDITOR_DEF_BASIC("export/windows/osslsigncode", ""); EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::STRING, "export/windows/osslsigncode", PROPERTY_HINT_GLOBAL_FILE)); // On non-Windows we need WINE to run rcedit - EDITOR_DEF("export/windows/wine", ""); + EDITOR_DEF_BASIC("export/windows/wine", ""); EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::STRING, "export/windows/wine", PROPERTY_HINT_GLOBAL_FILE)); #endif #endif |