Now groups by system components, ie. system components are added at the

bottom of the list while other teams are added at the top of the list.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13147 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2005-06-15 06:44:33 +00:00
parent 62f29f2d9b
commit 73c9d940e7

View File

@ -254,7 +254,8 @@ TMView::UpdateList()
if (!found) {
TMListItem *item = new TMListItem(info);
fListView->AddItem(item, 0);
fListView->AddItem(item, item->IsSystemServer() ? fListView->CountItems() : 0);
item->fFound = true;
changed = true;
}