We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug
Having Margin(1,1) in appStyle.Margin(1, 1).Render(m.list.View()) is causing wired render issue with fancy-list when we search for something.
Margin(1,1)
appStyle.Margin(1, 1).Render(m.list.View())
Basically, it's rendering a description of a list that is not matching text.
Setup Please complete the following information along with version numbers, if applicable.
To Reproduce
Update this code here https://github.com/charmbracelet/bubbletea/blob/main/examples/list-fancy/main.go#L180
TO
return appStyle.Margin(1, 1).Render(m.list.View())
After this run go run *.go
go run *.go
Search for tes by pressing /
tes
/
Expected behavior
If there is no Margin(1, 1) added it renders fine.
Margin(1, 1)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Having
Margin(1,1)
inappStyle.Margin(1, 1).Render(m.list.View())
is causing wired render issue with fancy-list when we search for something.Basically, it's rendering a description of a list that is not matching text.
Setup
Please complete the following information along with version numbers, if applicable.
To Reproduce
Update this code here https://github.com/charmbracelet/bubbletea/blob/main/examples/list-fancy/main.go#L180
TO
After this run
go run *.go
Search for
tes
by pressing/
Expected behavior
If there is no
Margin(1, 1)
added it renders fine.The text was updated successfully, but these errors were encountered: