summaryrefslogtreecommitdiffstats
path: root/scene/gui/control.cpp
diff options
context:
space:
mode:
authorAlvin Wong <alvinhochun@gmail.com>2024-06-30 00:30:42 +0800
committerAlvin Wong <alvinhochun@gmail.com>2024-06-30 00:33:37 +0800
commitcc45c2cdd38cc6e99630bb6e9e677e4920f242c0 (patch)
treeb921af652950e2379e48e3b7409552ab87619348 /scene/gui/control.cpp
parent25de53e147a04ba15afc461b3ad4aa1884ff927d (diff)
downloadredot-engine-cc45c2cdd38cc6e99630bb6e9e677e4920f242c0.tar.gz
Change GUI controls pixel snap to round halfway to +ve infinity
Diffstat (limited to 'scene/gui/control.cpp')
-rw-r--r--scene/gui/control.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/control.cpp b/scene/gui/control.cpp
index 0682c11a9b..e734dab39a 100644
--- a/scene/gui/control.cpp
+++ b/scene/gui/control.cpp
@@ -696,7 +696,7 @@ void Control::_update_canvas_item_transform() {
// We use a little workaround to avoid flickering when moving the pivot with _edit_set_pivot()
if (is_inside_tree() && Math::abs(Math::sin(data.rotation * 4.0f)) < 0.00001f && get_viewport()->is_snap_controls_to_pixels_enabled()) {
- xform[2] = xform[2].round();
+ xform[2] = (xform[2] + Vector2(0.5, 0.5)).floor();
}
RenderingServer::get_singleton()->canvas_item_set_transform(get_canvas_item(), xform);