From d5984ae980a4acfead73c75d01be184d4287faef Mon Sep 17 00:00:00 2001 From: Casper Rogild Storm Date: Fri, 8 Mar 2024 23:26:09 +0100 Subject: [PATCH] fix: make pane_grid appearance items visible to others. --- widget/src/pane_grid.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/widget/src/pane_grid.rs b/widget/src/pane_grid.rs index d60d5e3b5f..bdeb42507d 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`].