fix(tui): find dialog bg color

This commit is contained in:
adamdotdevin
2025-07-14 09:09:46 -05:00
parent 8d0350d923
commit 229a280652
3 changed files with 31 additions and 9 deletions

View File

@@ -54,7 +54,9 @@ func (cg *filesContextGroup) getGitFiles() []dialog.CompletionItemI {
Value: file.Path,
ProviderID: cg.GetId(),
Raw: file,
})
},
dialog.WithBackgroundColor(t.BackgroundPanel()),
)
items = append(items, item)
}
}
@@ -100,7 +102,9 @@ func (cg *filesContextGroup) GetChildEntries(
Value: file,
ProviderID: cg.GetId(),
Raw: file,
})
},
dialog.WithBackgroundColor(theme.CurrentTheme().BackgroundPanel()),
)
items = append(items, item)
}
}