Make context and dropdown menus scrollable (#15127)
This PR makes context and dropdown menus scrollable, so that they don't become totally unusable when they overflow the window. Release Notes: - N/A
This commit is contained in:
parent
4e88a08ed4
commit
8501ae6a19
2 changed files with 5 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
use gpui::{ClickEvent, CursorStyle, MouseButton, View};
|
||||
use gpui::{AnchorCorner, ClickEvent, CursorStyle, MouseButton, View};
|
||||
|
||||
use crate::{prelude::*, ContextMenu, PopoverMenu};
|
||||
|
||||
|
@ -45,6 +45,7 @@ impl RenderOnce for DropdownMenu {
|
|||
.full_width(self.full_width)
|
||||
.menu(move |_cx| Some(self.menu.clone()))
|
||||
.trigger(DropdownMenuTrigger::new(self.label).full_width(self.full_width))
|
||||
.attach(AnchorCorner::BottomLeft)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue