layout: Remove width and is_full_width from InsertHint

They were unused.
This commit is contained in:
Ivan Molodetskikh
2025-04-17 10:07:29 +03:00
parent 7e253d2687
commit fdbc485d78
2 changed files with 0 additions and 4 deletions
-2
View File
@@ -2792,8 +2792,6 @@ impl<W: LayoutElement> Layout<W> {
ws.set_insert_hint(InsertHint {
position,
width: move_.width,
is_full_width: move_.is_full_width,
corner_radius,
});
}
-2
View File
@@ -110,8 +110,6 @@ pub enum InsertPosition {
#[derive(Debug)]
pub struct InsertHint {
pub position: InsertPosition,
pub width: ColumnWidth,
pub is_full_width: bool,
pub corner_radius: CornerRadius,
}