We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
fyne-io
andydotxyz
Jacalz
dweymouth
toaster
Learn more about funding links in repositories.
Report abuse
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
The button to display the popup of options is not positioned correctly
https://slack-files.com/T029RQSE6-F01BW1XESKG-a651868950
The text was updated successfully, but these errors were encountered:
Regression, let's get this fixed before release
Sorry, something went wrong.
I cannot replicate this sorry - can you provide a simple code sample please?
package main import ( "fyne.io/fyne" "fyne.io/fyne/app" "fyne.io/fyne/layout" "fyne.io/fyne/widget" "log" "time" ) func main() { a := app.New() w := a.NewWindow("Select Entry") s := widget.NewSelectEntry([]string{"a"}) go func() { time.Sleep(5 * time.Second) s.SetOptions([]string{"foo", "bar", "foobar"}) log.Println("Options Updated") time.Sleep(5 * time.Second) s.SetText("foobarfoobarfoobarfoobar") log.Println("Text Updated") }() w.SetContent( fyne.NewContainerWithLayout(layout.NewCenterLayout(), widget.NewVBox(s, widget.NewPasswordEntry()))) w.Resize(fyne.NewSize(300, 200)) w.ShowAndRun() }
Only init the dropdown once
08011d7
Fixes fyne-io#1361
No branches or pull requests
Describe the bug:
The button to display the popup of options is not positioned correctly
Screenshots:
https://slack-files.com/T029RQSE6-F01BW1XESKG-a651868950
The text was updated successfully, but these errors were encountered: