diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-02 18:51:02 +0100 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-02 18:51:02 +0100 |
| commit | fd1e579aa78258b91e658b5b4b9a3fc94d0a0ef4 (patch) | |
| tree | ff5c92a9500ccdc34383321b479c4738caf1376e /platform/ios | |
| parent | 76092fb6841e5f56c37b983400828971a5559f2c (diff) | |
| parent | 060d62e0dc094ac7c4f15020c6921ac582f29977 (diff) | |
Merge pull request #68090 from bruvzg/sys_emoji
Load and use system emoji font in the editor.
Diffstat (limited to 'platform/ios')
| -rw-r--r-- | platform/ios/os_ios.mm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/platform/ios/os_ios.mm b/platform/ios/os_ios.mm index a674498620..b6b94d2f5e 100644 --- a/platform/ios/os_ios.mm +++ b/platform/ios/os_ios.mm @@ -396,7 +396,14 @@ void OS_IOS::vibrate_handheld(int p_duration_ms) { } bool OS_IOS::_check_internal_feature_support(const String &p_feature) { - return p_feature == "mobile"; + if (p_feature == "system_fonts") { + return true; + } + if (p_feature == "mobile") { + return true; + } + + return false; } void OS_IOS::on_focus_out() { |