diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-10-31 19:12:18 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-11-01 11:04:58 +0200 |
commit | 060d62e0dc094ac7c4f15020c6921ac582f29977 (patch) | |
tree | b5cb03793c7f9d17b386a5c919600831cc5e9323 /platform/macos | |
parent | e6751549cf7247965d1744b8c464f5e901006f21 (diff) |
Load and use system emoji font in the editor.
Diffstat (limited to 'platform/macos')
-rw-r--r-- | platform/macos/os_macos.mm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/platform/macos/os_macos.mm b/platform/macos/os_macos.mm index 8ffb0abfdb..e620b058d3 100644 --- a/platform/macos/os_macos.mm +++ b/platform/macos/os_macos.mm @@ -499,7 +499,14 @@ String OS_MacOS::get_unique_id() const { } bool OS_MacOS::_check_internal_feature_support(const String &p_feature) { - return p_feature == "pc"; + if (p_feature == "system_fonts") { + return true; + } + if (p_feature == "pc") { + return true; + } + + return false; } void OS_MacOS::disable_crash_handler() { |