diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2023-02-17 10:26:38 -0600 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2023-02-17 10:27:28 -0600 |
commit | c53ab5663354cf0527ac5c9f310d3fd24859523e (patch) | |
tree | 99262ea5dd82a31d5e33895fa022fe34d4e03187 | |
parent | f84479fe5a0a3c34c1d0217527ae08dd24543243 (diff) |
macOS: Enable `display/high_res` by default
-rw-r--r-- | platform/macos/export/export_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/macos/export/export_plugin.cpp b/platform/macos/export/export_plugin.cpp index bb96308a75..5a097adf39 100644 --- a/platform/macos/export/export_plugin.cpp +++ b/platform/macos/export/export_plugin.cpp @@ -137,7 +137,7 @@ void EditorExportPlatformMacOS::get_export_options(List<ExportOption> *r_options r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "application/version"), "1.0")); r_options->push_back(ExportOption(PropertyInfo(Variant::STRING, "application/copyright"), "")); r_options->push_back(ExportOption(PropertyInfo(Variant::DICTIONARY, "application/copyright_localized", PROPERTY_HINT_LOCALIZABLE_STRING), Dictionary())); - r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "display/high_res"), false)); + r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, "display/high_res"), true)); #ifdef MACOS_ENABLED r_options->push_back(ExportOption(PropertyInfo(Variant::INT, "codesign/codesign", PROPERTY_HINT_ENUM, "Disabled,Built-in (ad-hoc only),rcodesign,Xcode codesign"), 3, true)); |