1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-31 18:41:20 +00:00

Remove leftover print line from TextServer.

This commit is contained in:
Pāvels Nadtočajevs
2025-12-19 07:51:36 +02:00
parent 40cf5a0f50
commit ffd5129337

View File

@@ -5756,7 +5756,6 @@ RID TextServerAdvanced::_find_sys_font_for_text(const RID &p_fdef, const String
String locale = (p_language.is_empty()) ? TranslationServer::get_singleton()->get_tool_locale() : p_language;
PackedStringArray fallback_font_name = OS::get_singleton()->get_system_font_path_for_text(font_name, p_text, locale, p_script_code, font_weight, font_stretch, font_style & TextServer::FONT_ITALIC);
print_line("sysf x ", p_text, " --> ", fallback_font_name);
#ifdef GDEXTENSION
for (int fb = 0; fb < fallback_font_name.size(); fb++) {
const String &E = fallback_font_name[fb];