matwachich
matwachich
Another idea to discuss, coming from WinAPI, in Select (ComboBox :p), pressing character key selects the item starting with that caracter ; pressing again the same caracter will cycle through...
Also, another important aspect of Tab navigation is the order of the widgets. I imagine 2 ways: - Add a method to Tabbable GetTabNext() fyne.Tabbable - Add a field TabOrder...
Some new information: the bug seems to exist also for a standard SelectEntry (not extended widget) inside a Form ```go // build & return layout return container.New(&PercentColsLayout{Percents: []int{30, 70}}, container.NewBorder(tab.toolbar,...
Some new information: setting a non nil Validator to a standard Entry gives the same effet. So it is definitly related to Validation. It's like something says to the layout...
Seems like this feature is coming to GLFW https://github.com/glfw/glfw/issues/1204
This is a prerequisit to accelerators I think. So it should be worth some code refactoring. Why not adding a return value to callback functions, like a boolean that if...
Check fyne-x, there is an autocompletion Entry custom widget. It's very simple to implement
I also encoutered this bug. I noticed something else, that could help to fix it: when clicked something Tappable, there is a delay before the Tapped handler is getting called,...
Why not using a percentage, but just dlgSize = winSize - dlgShadowSize so the dialog will have the maximum possible size to cover the entire window and show the gradient...
What is sure is that a dialog should never be wider/higher than the parent window.