mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 20:23:53 +00:00
Merge pull request #92808 from bruvzg/fix_ci_updates
Fix excessive canvas items updates.
This commit is contained in:
commit
56a8db109c
@ -1229,14 +1229,12 @@ void Window::_update_viewport_size() {
|
||||
}
|
||||
if (!Math::is_equal_approx(TS->font_get_global_oversampling(), font_oversampling)) {
|
||||
TS->font_set_global_oversampling(font_oversampling);
|
||||
ci_updated = false;
|
||||
if (!ci_updated) {
|
||||
update_canvas_items();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!ci_updated) {
|
||||
update_canvas_items();
|
||||
}
|
||||
|
||||
notification(NOTIFICATION_WM_SIZE_CHANGED);
|
||||
|
||||
if (embedder) {
|
||||
|
Loading…
Reference in New Issue
Block a user