remove zed1 notification mess

This commit is contained in:
Conrad Irwin 2023-11-27 16:22:27 -07:00
parent ccfc4fc0b9
commit f3d142b7e9

View file

@ -56,14 +56,16 @@ use std::{
}; };
use crate::{ use crate::{
notifications::{simple_message_notification::MessageNotification, NotificationTracker}, notifications::NotificationTracker,
persistence::model::{ persistence::model::{
DockData, DockStructure, SerializedPane, SerializedPaneGroup, SerializedWorkspace, DockData, DockStructure, SerializedPane, SerializedPaneGroup, SerializedWorkspace,
}, },
}; };
use dock::{Dock, DockPosition, Panel, PanelButtons, PanelHandle}; use dock::{Dock, DockPosition, Panel, PanelButtons, PanelHandle};
use lazy_static::lazy_static; 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::*;
pub use pane_group::*; pub use pane_group::*;
use persistence::{model::SerializedItem, DB}; use persistence::{model::SerializedItem, DB};
@ -778,20 +780,6 @@ impl Workspace {
cx.defer(|this, cx| { cx.defer(|this, cx| {
this.update_window_title(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 { Workspace {
weak_self: weak_handle.clone(), weak_self: weak_handle.clone(),