mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-03 15:22:13 +00:00
chore: remove redundant mut
This commit is contained in:
parent
94f1d8281a
commit
c6425b36da
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ pub(super) fn render_nav_button<V: View>(
|
|||
enum NavButton {}
|
||||
MouseEventHandler::<NavButton, _>::new(direction as usize, cx, |state, cx| {
|
||||
let theme = theme::current(cx);
|
||||
let mut style = theme.search.nav_button.style_for(state).clone();
|
||||
let style = theme.search.nav_button.style_for(state).clone();
|
||||
let mut container_style = style.container.clone();
|
||||
let label = Label::new(icon, style.label.clone()).contained();
|
||||
match direction {
|
||||
|
|
Loading…
Reference in a new issue