Use Horizontal ranges everywhere

This commit is contained in:
Conrad Irwin
2023-10-09 21:48:50 -06:00
parent 002e2cc42c
commit ab050d1890
13 changed files with 229 additions and 149 deletions
+2 -2
View File
@@ -7,8 +7,8 @@ pub enum SelectionGoal {
None,
HorizontalPosition(f32),
HorizontalRange { start: f32, end: f32 },
Column(u32),
ColumnRange { start: u32, end: u32 },
WrappedHorizontalPosition((u32, f32)),
WrappedHorizontalRange { start: (u32, f32), end: (u32, f32) },
}
#[derive(Clone, Debug, PartialEq)]