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
Tab completion in ComboBox works the first time you type something in but fails when changing and Tab completing the second time.
ComboBox
To Reproduce Using the below code
The expected behaviour is for the text to behave as before and leave "Right" selected in combo box
Actual behaviour is that it resets to "Left"
using System.Collections.ObjectModel; using Terminal.Gui; namespace delmev2 { internal class Program { static void Main(string[] args) { Application.Init(); var d = new Dialog() { Width = 50, Height = 10 }; var lbl = new Label() { Text = "Side:", Width = 10, // The thing we want CanFocus = true, }; d.Add(lbl); var dropdown = new ComboBox() { X = Pos.Right(lbl), Width = 10, Height = 5 }; dropdown.SetSource(new ObservableCollection<Side>(Enum.GetValues(typeof(Side)).Cast<Side>())); d.Add(dropdown); Application.Run(d); Application.Shutdown(); } } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Tab completion in
ComboBox
works the first time you type something in but fails when changing and Tab completing the second time.To Reproduce
Using the below code
The expected behaviour is for the text to behave as before and leave "Right" selected in combo box
Actual behaviour is that it resets to "Left"
The text was updated successfully, but these errors were encountered: