Removes ">" indicator from Contacts group.

cusax-fix
hristoterezov 12 years ago
parent 21170d0058
commit 822515d932

@ -535,11 +535,19 @@ else if (value instanceof GroupNode)
statusIcon = expanded
? openedGroupIcon
: closedGroupIcon;
this.statusLabel.setIcon(
expanded
? openedGroupIcon
: closedGroupIcon);
if(groupItem != treeContactList.getRootUIGroup())
{
this.statusLabel.setIcon(
expanded
? openedGroupIcon
: closedGroupIcon);
}
else
{
this.statusLabel.setIcon(null);
}
// We have no photo icon for groups.
this.rightLabel.setIcon(null);
this.rightLabel.setText("");

@ -577,6 +577,15 @@ else if (group instanceof UIGroupImpl)
this.expandGroup(treeModel.getRoot());
}
/**
* Returns the root meta contact UI group.
* @return the root meta contact UI group implementation.
*/
public UIGroupImpl getRootUIGroup()
{
return rootUIGroup;
}
/**
* Creates UI group for the root meta contact group.
*/

Loading…
Cancel
Save