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

Up/Down arrows should NOT exit unless K_DEUCEEXIT is set!

parent bca83804
No related branches found
No related tags found
No related merge requests found
......@@ -1704,9 +1704,11 @@ int ugetstr(int left, int top, int width, char *outstr, int max, long mode, int
case CIO_KEY_F(2):
case CIO_KEY_UP:
case CIO_KEY_DOWN:
if(mode&K_DEUCEEXIT)
if(mode&K_DEUCEEXIT) {
ch=CR;
break;
break;
}
continue;
case CTRL_X:
if(j)
{
......
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