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

Re-order online menu... since there's a disconnect shortcut key, no reason

for it to be the default action.
parent d0527e05
No related branches found
No related tags found
No related merge requests found
......@@ -60,8 +60,8 @@ void viewscroll(void)
int syncmenu(void)
{
char *opts[3]={ "Disconnect"
,"Scrollback"
char *opts[3]={ "Scrollback"
,"Disconnect"
,""};
int opt=0;
int i;
......@@ -80,12 +80,12 @@ int syncmenu(void)
case -1: /* Cancel */
ret=1;
break;
case 0: /* Disconnect */
ret=-1;
break;
case 1:
case 0: /* Scrollback */
viewscroll();
break;
case 1: /* Disconnect */
ret=-1;
break;
}
}
......
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