diff options
Diffstat (limited to '')
| -rw-r--r-- | src/text.rs | 4 | ||||
| -rw-r--r-- | src/text/rich.rs | 9 |
2 files changed, 5 insertions, 8 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 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 |
