Skip to content

Commit

Permalink
tweak padding in search dialogs
Browse files Browse the repository at this point in the history
  • Loading branch information
dweymouth committed May 26, 2024
1 parent edb6654 commit 38a7983
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions ui/dialogs/searchdialog.go
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,12 @@ func (sd *SearchDialog) CreateRenderer() fyne.WidgetRenderer {
}
sd.content = container.NewStack(
container.NewBorder(
container.NewVBox(title, sd.searchEntry),
container.NewVBox(title,
container.New(layout.NewCustomPaddedLayout(0, 0, 2, 2),
sd.searchEntry)),
container.NewVBox(widget.NewSeparator(), bottomRow),
nil, nil, sd.list),
nil, nil,
container.New(layout.NewCustomPaddedLayout(0, 0, 4, 4), sd.list)),
container.NewCenter(sd.loadingDots),
)

Expand Down

0 comments on commit 38a7983

Please sign in to comment.