Skip to content
Snippets Groups Projects
Commit b0426f39 authored by deuce's avatar deuce
Browse files

Fix bug from last commit... one more place i was used as the entered key.

parent 1820795c
No related branches found
No related tags found
No related merge requests found
......@@ -1484,7 +1484,7 @@ int ulist(int mode, int left, int top, int width, int *cur, int *bar
if(option[j]!=NULL
&& strlen(option[j])>(size_t)b
&& ((!a && s && !strnicmp(option[j]+b,search,s+1))
|| ((a || !s) && toupper(option[j][b])==toupper(i)))) {
|| ((a || !s) && toupper(option[j][b])==toupper(gotkey)))) {
if(a) s=0;
else s++;
if(y+(j-(*cur))+2>height+top) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment