Fix redundant references in slider
This commit is contained in:
parent
84a1edecea
commit
925b78a75d
1 changed files with 3 additions and 3 deletions
|
|
@ -363,11 +363,11 @@ pub fn draw<T, R>(
|
||||||
let is_mouse_over = bounds.contains(cursor_position);
|
let is_mouse_over = bounds.contains(cursor_position);
|
||||||
|
|
||||||
let style = if state.is_dragging {
|
let style = if state.is_dragging {
|
||||||
style_sheet.dragging(&style)
|
style_sheet.dragging(style)
|
||||||
} else if is_mouse_over {
|
} else if is_mouse_over {
|
||||||
style_sheet.hovered(&style)
|
style_sheet.hovered(style)
|
||||||
} else {
|
} else {
|
||||||
style_sheet.active(&style)
|
style_sheet.active(style)
|
||||||
};
|
};
|
||||||
|
|
||||||
let rail_y = bounds.y + (bounds.height / 2.0).round();
|
let rail_y = bounds.y + (bounds.height / 2.0).round();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue