From 4321b4bc1f70ba85c683dac09fc2dc90af1da1f3 Mon Sep 17 00:00:00 2001 From: Polesznyák Márk Date: Mon, 8 Dec 2025 20:39:24 +0100 Subject: chore: update as necessary for upstream iced changes --- src/text.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/text.rs') diff --git a/src/text.rs b/src/text.rs index ff5d5a4..e106919 100644 --- a/src/text.rs +++ b/src/text.rs @@ -636,8 +636,8 @@ where let bounds = layout.bounds(); let (rows, mut start, mut end) = state.selection_end_points(); - start = start + core::Vector::new(bounds.x, bounds.y); - end = end + core::Vector::new(bounds.x, bounds.y); + start += core::Vector::new(bounds.x, bounds.y); + end += core::Vector::new(bounds.x, bounds.y); let line_height = self .format -- cgit v1.2.3