Fix clippy::needless_borrow lint violations (#36444)
Release Notes: - N/A
This commit is contained in:
parent
eecf142f06
commit
9e0e233319
242 changed files with 801 additions and 821 deletions
|
@ -142,7 +142,7 @@ impl SearchOption {
|
|||
SearchSource::Buffer => {
|
||||
let focus_handle = focus_handle.clone();
|
||||
button.on_click(move |_: &ClickEvent, window, cx| {
|
||||
if !focus_handle.is_focused(&window) {
|
||||
if !focus_handle.is_focused(window) {
|
||||
window.focus(&focus_handle);
|
||||
}
|
||||
window.dispatch_action(action.boxed_clone(), cx);
|
||||
|
|
|
@ -26,7 +26,7 @@ pub(super) fn render_action_button(
|
|||
.on_click({
|
||||
let focus_handle = focus_handle.clone();
|
||||
move |_, window, cx| {
|
||||
if !focus_handle.is_focused(&window) {
|
||||
if !focus_handle.is_focused(window) {
|
||||
window.focus(&focus_handle);
|
||||
}
|
||||
window.dispatch_action(action.boxed_clone(), cx)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue