Fixed mbsetup node groupedit view

This commit is contained in:
Michiel Broek 2002-02-17 12:24:03 +00:00
parent ea59f6ffa6
commit 29e2022602
2 changed files with 14 additions and 1 deletions

View File

@ -4602,8 +4602,10 @@ v0.33.20 10-Feb-2002
creation. creation.
Added servicename filemgr to the filemgr services. Added servicename filemgr to the filemgr services.
When adding or deleting a message area, several extra checks When adding or deleting a message area, several extra checks
are done. are done. The JAM base is also removed when deleting.
Layout for message area editor changed, more logical now. Layout for message area editor changed, more logical now.
If selecting a file/mailgroup in node edit that is outside the
visible range of groups, the view is adjusted.
mbfido: mbfido:
In AreaMgr and FileMgr changed aka matching for area In AreaMgr and FileMgr changed aka matching for area

View File

@ -186,6 +186,17 @@ int E_Group(gr_list **fdp, char *title)
tmp->tagged = TRUE; tmp->tagged = TRUE;
} }
} }
if (o != ((i -1) / 40) * 40) {
/*
* If a group is selected outside the visible
* range, change the groupview.
*/
o = ((i -1) / 40) * 40;
clr_index();
set_color(WHITE, BLACK);
mvprintw(5, 5, (char *)"%s", title);
set_color(CYAN, BLACK);
}
} }
break; break;
} }