From 4c0de4f53838cc1e1bd95f87c9ca961220012221 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pa=CC=84vels=20Nadtoc=CC=8Cajevs?= <7645683+bruvzg@users.noreply.github.com> Date: Wed, 18 Feb 2026 14:34:36 +0200 Subject: [PATCH] Apply viewport oversampling to Line2D --- scene/2d/line_2d.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/2d/line_2d.cpp b/scene/2d/line_2d.cpp index cf5679800e..530d905dd2 100644 --- a/scene/2d/line_2d.cpp +++ b/scene/2d/line_2d.cpp @@ -293,7 +293,7 @@ void Line2D::_draw() { RID texture_rid; if (_texture.is_valid()) { - texture_rid = _texture->get_rid(); + texture_rid = _texture->get_scaled_rid(); lb.tile_aspect = _texture->get_size().aspect(); }