Merge pull request #18789 from endragor/fix-oversampled-outline-update
Update oversampling of outlines after window size change
This commit is contained in:
commit
0f942764ff
1 changed files with 5 additions and 0 deletions
|
@ -1080,6 +1080,11 @@ void DynamicFont::update_oversampling() {
|
|||
|
||||
if (E->self()->data_at_size.is_valid()) {
|
||||
E->self()->data_at_size->update_oversampling();
|
||||
|
||||
if (E->self()->outline_data_at_size.is_valid()) {
|
||||
E->self()->outline_data_at_size->update_oversampling();
|
||||
}
|
||||
|
||||
changed.push_back(Ref<DynamicFont>(E->self()));
|
||||
}
|
||||
E = E->next();
|
||||
|
|
Loading…
Reference in a new issue