diff options
-rw-r--r-- | widget/src/pane_grid.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/widget/src/pane_grid.rs b/widget/src/pane_grid.rs index d60d5e3b..bdeb4250 100644 --- a/widget/src/pane_grid.rs +++ b/widget/src/pane_grid.rs @@ -1118,11 +1118,11 @@ impl<'a, T> Contents<'a, T> { #[derive(Debug, Clone, Copy, PartialEq)] pub struct Appearance { /// The appearance of a hovered region highlight. - hovered_region: Highlight, + pub hovered_region: Highlight, /// The appearance of a picked split. - picked_split: Line, + pub picked_split: Line, /// The appearance of a hovered split. - hovered_split: Line, + pub hovered_split: Line, } /// The appearance of a highlight of the [`PaneGrid`]. |