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

Fix bug which didn't allow exiting the sort order menu except via closing

the window.
parent f74cf133
No related branches found
No related tags found
No related merge requests found
......@@ -497,8 +497,11 @@ void edit_sorting(struct bbslist **list, int *listcount, int *ocur, int *obar, c
ret=uifc.list(WIN_XTR|WIN_DEL|WIN_INS|WIN_INSACT|WIN_ACT|WIN_SAV
,0,0,0,&curr,&bar,"Sort Order",opts);
if(ret==-1) {
if(check_exit(FALSE))
break;
if (uifc.exit_flags & UIFC_XF_QUIT) {
if (!check_exit(FALSE));
continue;
}
break;
}
if(ret & MSK_INS) { /* Insert sorting */
j=0;
......
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