remove zed1 notification mess (#3415)

Accidentally added while testing zed2

Release Notes:

- N/A
This commit is contained in:
Conrad Irwin 2023-11-27 16:52:51 -07:00 committed by GitHub
commit eca49ef02e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,14 +56,16 @@ use std::{
};
use crate::{
notifications::{simple_message_notification::MessageNotification, NotificationTracker},
notifications::NotificationTracker,
persistence::model::{
DockData, DockStructure, SerializedPane, SerializedPaneGroup, SerializedWorkspace,
},
};
use dock::{Dock, DockPosition, Panel, PanelButtons, PanelHandle};
use lazy_static::lazy_static;
use notifications::{simple_message_notification, NotificationHandle, NotifyResultExt};
use notifications::{
simple_message_notification::MessageNotification, NotificationHandle, NotifyResultExt,
};
pub use pane::*;
pub use pane_group::*;
use persistence::{model::SerializedItem, DB};
@ -778,20 +780,6 @@ impl Workspace {
cx.defer(|this, cx| {
this.update_window_title(cx);
this.show_notification(0, cx, |cx| {
cx.add_view(|_cx| {
simple_message_notification::MessageNotification::new(format!(
"Error: what happens if this message is very very very very very long "
))
.with_click_message("Click here because!")
})
});
this.show_notification(1, cx, |cx| {
cx.add_view(|_cx| {
simple_message_notification::MessageNotification::new(format!("Nope"))
})
});
});
Workspace {
weak_self: weak_handle.clone(),