You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Load and use system emoji font in the editor.
This commit is contained in:
@@ -481,7 +481,16 @@ Error OS_LinuxBSD::shell_open(String p_uri) {
|
||||
}
|
||||
|
||||
bool OS_LinuxBSD::_check_internal_feature_support(const String &p_feature) {
|
||||
return p_feature == "pc";
|
||||
#ifdef FONTCONFIG_ENABLED
|
||||
if (p_feature == "system_fonts") {
|
||||
return font_config_initialized;
|
||||
}
|
||||
#endif
|
||||
if (p_feature == "pc") {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
uint64_t OS_LinuxBSD::get_embedded_pck_offset() const {
|
||||
|
||||
Reference in New Issue
Block a user