Add a way to clear activity indicator (#30156)
Follow-up of https://github.com/zed-industries/zed/pull/30015 * Restyles the dismiss and close buttons a bit: change the dismiss icon and add tooltips with the bindings to both * Allows ESC to clear any status that's in the activity indicator now, if all notifications are cleared: this won't suppress any further status additions though, so statuses may resurface later Release Notes: - Added a way to clear activity indicator
This commit is contained in:
parent
77ac82587a
commit
6e19c9b141
5 changed files with 88 additions and 19 deletions
|
@ -869,6 +869,7 @@ pub enum Event {
|
|||
},
|
||||
ZoomChanged,
|
||||
ModalOpened,
|
||||
ClearActivityIndicator,
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
|
@ -5496,6 +5497,7 @@ impl Workspace {
|
|||
return;
|
||||
}
|
||||
|
||||
cx.emit(Event::ClearActivityIndicator);
|
||||
cx.propagate();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue