Merge pull request #60919 from bruvzg/fix_os_scale

This commit is contained in:
Rémi Verschelde 2022-05-10 14:04:23 +02:00 committed by GitHub
commit ff071377d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 0 deletions

View File

@ -2172,6 +2172,11 @@ void TextServerAdvanced::font_set_scale(const RID &p_font_rid, int64_t p_size, d
Vector2i size = _get_size(fd, p_size);
ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
#ifdef MODULE_FREETYPE_ENABLED
if (fd->cache[size]->face) {
return; // Do not override scale for dynamic fonts, it's calculated automatically.
}
#endif
fd->cache[size]->scale = p_scale;
}

View File

@ -1334,6 +1334,11 @@ void TextServerFallback::font_set_scale(const RID &p_font_rid, int64_t p_size, d
Vector2i size = _get_size(fd, p_size);
ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
#ifdef MODULE_FREETYPE_ENABLED
if (fd->cache[size]->face) {
return; // Do not override scale for dynamic fonts, it's calculated automatically.
}
#endif
fd->cache[size]->scale = p_scale;
}