table: Export scroll handles. (#371)

This commit is contained in:
Jason Lee 2024-10-30 14:25:38 +08:00 committed by GitHub
parent 292d1a6a9a
commit fe6566ce2f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -114,10 +114,10 @@ pub struct Table<D: TableDelegate> {
col_groups: Vec<ColGroup>,
vertical_scroll_handle: UniformListScrollHandle,
scrollbar_state: Rc<Cell<ScrollbarState>>,
horizontal_scroll_handle: ScrollHandle,
horizontal_scrollbar_state: Rc<Cell<ScrollbarState>>,
pub vertical_scroll_handle: UniformListScrollHandle,
pub scrollbar_state: Rc<Cell<ScrollbarState>>,
pub horizontal_scroll_handle: ScrollHandle,
pub horizontal_scrollbar_state: Rc<Cell<ScrollbarState>>,
selection_state: SelectionState,
selected_row: Option<usize>,