diff --git a/crates/outline/src/outline.rs b/crates/outline/src/outline.rs index 366d48bcf71bb7761606b97cfff0f97de76acae8..9e6cc045a76204c71bd5812d002a873cfc5dd461 100644 --- a/crates/outline/src/outline.rs +++ b/crates/outline/src/outline.rs @@ -121,7 +121,9 @@ impl OutlineView { ) -> OutlineView { let delegate = OutlineViewDelegate::new(cx.entity().downgrade(), outline, editor, cx); let picker = cx.new(|cx| { - Picker::uniform_list(delegate, window, cx).max_height(Some(vh(0.75, window))) + Picker::uniform_list(delegate, window, cx) + .max_height(Some(vh(0.75, window))) + .show_scrollbar(true) }); OutlineView { picker } }