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
A strange phenomenon has occurred If you put some "Text" in an "Frames" , only the first one can be displayed
If we add other widgets to the end, we can display them all
Check out the example code
package main import "cogentcore.org/core/core" var ( Body = core.NewBody() Header = core.NewFrame(Body) ) func main() { core.NewText(Header).SetText("1") core.NewText(Header).SetText("2") core.NewText(Header).SetText("3") //core.NewButton(Header).SetText("4") //core.NewButton(Header).SetText("5") //core.NewButton(Header).SetText("6") core.NewButton(Body).SetText("Hello, World!") Body.RunMainWindow() }
No response
macOS
The text was updated successfully, but these errors were encountered:
Thank you for reporting this. I can reproduce this and we will fix it soon.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
A strange phenomenon has occurred
If you put some "Text" in an "Frames" , only the first one can be displayed
If we add other widgets to the end, we can display them all
How to reproduce
Check out the example code
Example code
Relevant output
No response
Platform
macOS
The text was updated successfully, but these errors were encountered: