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
Branches
Tags
No related merge requests found
...@@ -60,8 +60,8 @@ void viewscroll(void) ...@@ -60,8 +60,8 @@ void viewscroll(void)
int syncmenu(void) int syncmenu(void)
{ {
char *opts[3]={ "Disconnect" char *opts[3]={ "Scrollback"
,"Scrollback" ,"Disconnect"
,""}; ,""};
int opt=0; int opt=0;
int i; int i;
...@@ -80,12 +80,12 @@ int syncmenu(void) ...@@ -80,12 +80,12 @@ int syncmenu(void)
case -1: /* Cancel */ case -1: /* Cancel */
ret=1; ret=1;
break; break;
case 0: /* Disconnect */ case 0: /* Scrollback */
ret=-1;
break;
case 1:
viewscroll(); viewscroll();
break; break;
case 1: /* Disconnect */
ret=-1;
break;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment