fix(context menu): increase vertical item padding (#665)

This matches the context menu to the designs.
This commit is contained in:
Vukašin Vojinović 2024-11-25 03:24:24 +01:00 committed by GitHub
parent 23d0a3bc74
commit 06150f7d44
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 61 additions and 55 deletions

View file

@ -806,9 +806,9 @@ impl Application for App {
for item in items.iter() {
if item.selected {
actions.extend(
item.preview_header().into_iter().map(|element| {
element.map(move |message| Message::from(message))
}),
item.preview_header()
.into_iter()
.map(|element| element.map(Message::from)),
)
}
}