Enable clippy::unnecessary_unwrap
(#8756)
This PR enables the [`clippy::unnecessary_unwrap`](https://rust-lang.github.io/rust-clippy/master/index.html#/unnecessary_unwrap) rule and fixes the outstanding violations. Release Notes: - N/A
This commit is contained in:
parent
191fcf67d1
commit
373e18bc88
4 changed files with 15 additions and 15 deletions
|
@ -51,8 +51,10 @@ impl<M: ManagedView> PopoverMenu<M> {
|
|||
|
||||
cx.subscribe(&new_menu, move |modal, _: &DismissEvent, cx| {
|
||||
if modal.focus_handle(cx).contains_focused(cx) {
|
||||
if previous_focus_handle.is_some() {
|
||||
cx.focus(previous_focus_handle.as_ref().unwrap())
|
||||
if let Some(previous_focus_handle) =
|
||||
previous_focus_handle.as_ref()
|
||||
{
|
||||
cx.focus(previous_focus_handle);
|
||||
}
|
||||
}
|
||||
*menu2.borrow_mut() = None;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue