diff --git a/crates/story/src/lib.rs b/crates/story/src/lib.rs index 33a8aae7..71dd1480 100644 --- a/crates/story/src/lib.rs +++ b/crates/story/src/lib.rs @@ -44,6 +44,7 @@ use gpui::{ }; use ui::{ + button::Button, divider::Divider, dock::{register_panel, DockItemInfo, DockItemState, Panel, PanelEvent, TitleStyle}, h_flex, @@ -51,7 +52,7 @@ use ui::{ notification::Notification, popup_menu::PopupMenu, theme::ActiveTheme, - v_flex, ContextModal, + v_flex, ContextModal, IconName, }; const PANEL_NAME: &str = "StoryContainer"; @@ -296,6 +297,19 @@ impl Panel for StoryContainer { .menu("Info", Box::new(PanelInfo)) } + fn toolbar_buttons(&self, _cx: &WindowContext) -> Vec