aboutsummaryrefslogtreecommitdiff
path: root/src/text/rich.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/rich.rs
parentfeat(examples): QOL changes (diff)
downloadiced_selection-4321b4bc1f70ba85c683dac09fc2dc90af1da1f3.tar.gz
chore: update as necessary for upstream iced changes
Diffstat (limited to 'src/text/rich.rs')
-rw-r--r--src/text/rich.rs9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/text/rich.rs b/src/text/rich.rs
index 4a7549f..4c6319b 100644
--- a/src/text/rich.rs
+++ b/src/text/rich.rs
@@ -446,10 +446,7 @@ where
span.padding.top,
),
bounds.size()
- + Size::new(
- span.padding.x(),
- span.padding.y(),
- ),
+ + Size::new(span.padding.x(), span.padding.y()),
);
renderer.fill_quad(
@@ -524,8 +521,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
.line_height