aboutsummaryrefslogtreecommitdiff
path: root/src/text.rs
diff options
context:
space:
mode:
authorPolesznyák Márk <contact@pml68.dev>2025-12-08 20:39:24 +0100
committerPolesznyák Márk <contact@pml68.dev>2025-12-08 20:39:24 +0100
commit4321b4bc1f70ba85c683dac09fc2dc90af1da1f3 (patch)
treea7824350ec65a293b5ea37459c261143029fd11f /src/text.rs
parentfeat(examples): QOL changes (diff)
downloadiced_selection-4321b4bc1f70ba85c683dac09fc2dc90af1da1f3.tar.gz
chore: update as necessary for upstream iced changes
Diffstat (limited to 'src/text.rs')
-rw-r--r--src/text.rs4
1 files changed, 2 insertions, 2 deletions
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