Open GoogleCodeExporter opened 9 years ago
I noticed too late that this issue is closely related to issue #421
Original comment by dajo...@gmail.com
on 24 Jun 2014 at 6:09
All you need to do (assuming you have Visual Studio) is change the following
code in QuickSelector.cs
private void textBoxData_KeyDown(object sender, KeyEventArgs e)
{
switch (e.KeyCode)
{
case Keys.Enter:
if (this.DataView.Count > 0) // Changed from == 1 to > 0 so as long as there's 1 or more, it'll select the first in the list which is usually the highlighted on.
{
this.DoSelectItem();
}
break;
Seems like the maintainers are taking a break from coding.
Original comment by djtrem...@gmail.com
on 10 Jul 2014 at 10:52
All you need to do (assuming you have Visual Studio) is change the following
code in QuickSelector.cs
private void textBoxData_KeyDown(object sender, KeyEventArgs e)
{
switch (e.KeyCode)
{
case Keys.Enter:
if (this.DataView.Count > 0) // Changed from == 1 to > 0 so as long as there's 1 or more, it'll select the first in the list which is usually the highlighted on.
{
this.DoSelectItem();
}
break;
Seems like the maintainers are taking a break from coding.
Original comment by djtrem...@gmail.com
on 10 Jul 2014 at 10:52
Original issue reported on code.google.com by
dajo...@gmail.com
on 24 Jun 2014 at 6:06