Add the ‘remove contact’ icon next to ‘all contacts’ on the contact right-click-menu ‘remove contact’ sub-menu.

cusax-fix
Tom Denham 13 years ago
parent 76fa718499
commit bdd56fe9d1

@ -362,13 +362,16 @@ private void init()
if (metaContact.getContactCount() > 1)
{
JMenuItem allItem = new JMenuItem(allContactsString);
Icon deleteIcon = new ImageIcon(
ImageLoader.getImage(ImageLoader.DELETE_16x16_ICON));
JMenuItem allItem = createMenuItem(
allContactsString,
removeContactPrefix + "allContacts",
deleteIcon);
JMenuItem allItem1 = new JMenuItem(allContactsString);
allItem.addActionListener(this);
allItem1.addActionListener(this);
allItem.setName(removeContactPrefix + "allContacts");
allItem1.setName(moveSubcontactPrefix + "allContacts");
this.removeContactMenu.add(allItem);

Loading…
Cancel
Save