summaryrefslogtreecommitdiff
path: root/platform/ios
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2022-10-31 19:12:18 +0200
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2022-11-01 11:04:58 +0200
commit060d62e0dc094ac7c4f15020c6921ac582f29977 (patch)
treeb5cb03793c7f9d17b386a5c919600831cc5e9323 /platform/ios
parente6751549cf7247965d1744b8c464f5e901006f21 (diff)
Load and use system emoji font in the editor.
Diffstat (limited to 'platform/ios')
-rw-r--r--platform/ios/os_ios.mm9
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() {