Skip to content

Commit

Permalink
debugging focused style not working
Browse files Browse the repository at this point in the history
  • Loading branch information
GyulyVGC committed Jan 23, 2023
1 parent 7d2d813 commit eaa2238
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions native/src/widget/scrollable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ pub fn draw<Renderer>(
} else if mouse_over_scrollable {
theme.focused(style)
} else {
theme.active(style)
theme.focused(style)
};

draw_scrollbar(renderer, style, &scrollbar);
Expand All @@ -874,7 +874,7 @@ pub fn draw<Renderer>(
} else if mouse_over_scrollable {
theme.focused_horizontal(style)
} else {
theme.active_horizontal(style)
theme.focused_horizontal(style)
};

draw_scrollbar(renderer, style, &scrollbar);
Expand Down

0 comments on commit eaa2238

Please sign in to comment.