diff options
Diffstat (limited to 'style/src/theme.rs')
-rw-r--r-- | style/src/theme.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/style/src/theme.rs b/style/src/theme.rs index c7b2bada..8a7be72c 100644 --- a/style/src/theme.rs +++ b/style/src/theme.rs @@ -703,12 +703,12 @@ pub enum PaneGrid { impl pane_grid::StyleSheet for Theme { type Style = PaneGrid; - fn hovered_region(&self, style: &Self::Style) -> pane_grid::Region { + fn hovered_region(&self, style: &Self::Style) -> pane_grid::Appearance { match style { PaneGrid::Default => { let palette = self.extended_palette(); - pane_grid::Region { + pane_grid::Appearance { background: Background::Color(Color { a: 0.5, ..palette.primary.base.color |