diff --git a/crates/git_graph/src/git_graph.rs b/crates/git_graph/src/git_graph.rs index 472fbaa6483fa110364d2c6e4affccc3e3772991..37f170ada5ecd23daf5ee58ee1011af95bfc6b8d 100644 --- a/crates/git_graph/src/git_graph.rs +++ b/crates/git_graph/src/git_graph.rs @@ -1560,6 +1560,17 @@ impl GitGraph { .vertical_scrollbar_for(&self.changed_files_scroll_handle, window, cx), ), ) + .child(Divider::horizontal()) + .child( + h_flex().p_1p5().w_full().child( + Button::new("view-commit", "View Commit") + .full_width() + .style(ButtonStyle::Outlined) + .on_click(cx.listener(|this, _, window, cx| { + this.open_selected_commit_view(window, cx); + })), + ), + ) .into_any_element() }