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

Merge pull request #105482 from maxpiepenbrink/fix-canvas-translate-regression

Fix regression causing jittery canvas transforms
This commit is contained in:
Thaddeus Crews
2025-04-21 08:24:15 -05:00

View File

@@ -1772,7 +1772,7 @@ void Control::_size_changed() {
}
}
if (pos_changed && !size_changed) {
if (pos_changed && !approx_size_changed) {
_update_canvas_item_transform();
}