Fix panic caused by focusing the same thing twice

This commit is contained in:
Conrad Irwin 2023-11-09 22:23:36 -07:00
parent 5a711886d4
commit cc9fb9dea0
3 changed files with 7 additions and 3 deletions

View file

@ -407,6 +407,10 @@ impl<'a> WindowContext<'a> {
/// Move focus to the element associated with the given `FocusHandle`.
pub fn focus(&mut self, handle: &FocusHandle) {
if self.window.focus == Some(handle.id) {
return;
}
if self.window.last_blur.is_none() {
self.window.last_blur = Some(self.window.focus);
}