From fdbc485d78acea2fe701b38edf9016f541cd1dde Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Thu, 17 Apr 2025 10:07:29 +0300 Subject: layout: Remove width and is_full_width from InsertHint They were unused. --- src/layout/scrolling.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/layout/scrolling.rs') diff --git a/src/layout/scrolling.rs b/src/layout/scrolling.rs index 931399dd..87f6c7ba 100644 --- a/src/layout/scrolling.rs +++ b/src/layout/scrolling.rs @@ -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, } -- cgit