summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--menu/source.go7
1 files changed, 1 insertions, 6 deletions
diff --git a/menu/source.go b/menu/source.go
index 320a117..b5d462b 100644
--- a/menu/source.go
+++ b/menu/source.go
@@ -23,11 +23,6 @@ var (
return st
})
- SourceIconStyle = style.New(func() lipgloss.Style {
- st := lipgloss.NewStyle().PaddingRight(1).Width(3)
- return st
-
- })
SourceTargetsStyle = style.New(func() lipgloss.Style {
st := lipgloss.NewStyle()
return st
@@ -46,7 +41,7 @@ func (m *Model) Source(src *model.HydratedSource) string {
targetContent := lipgloss.JoinVertical(lipgloss.Top, targets...)
- icon := SourceIconStyle.Render(src.Icon)
+ icon := PaddedIcon(src.Icon)
parts := []string{
SourceHeaderStyle.Render(lipgloss.JoinHorizontal(lipgloss.Left, SourceLabelStyle.Render(lipgloss.JoinHorizontal(lipgloss.Left, icon, src.Label()), SourcePathStyle.Render(src.ShortPath())))),