summaryrefslogtreecommitdiffstats
path: root/widget/src/overlay
diff options
context:
space:
mode:
Diffstat (limited to 'widget/src/overlay')
-rw-r--r--widget/src/overlay/menu.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/widget/src/overlay/menu.rs b/widget/src/overlay/menu.rs
index 3ed26b7d..e855fc14 100644
--- a/widget/src/overlay/menu.rs
+++ b/widget/src/overlay/menu.rs
@@ -602,9 +602,9 @@ pub struct Appearance {
#[derive(Debug, PartialEq, Eq)]
pub struct Style<Theme> {
/// The style of the list of the [`Menu`].
- list: fn(&Theme) -> Appearance,
+ pub list: fn(&Theme) -> Appearance,
/// The style of the [`Scrollable`] of the [`Menu`].
- scrollable: fn(&Theme, scrollable::Status) -> scrollable::Appearance,
+ pub scrollable: fn(&Theme, scrollable::Status) -> scrollable::Appearance,
}
impl Style<Theme> {