Replaces ZID icon in order to fix security layout.

cusax-fix
Yana Stamcheva 14 years ago
parent 5d4de72638
commit 38b1c6ab30

@ -258,6 +258,7 @@ service.gui.buttons.CONTACT_LIST_DIAL_BUTTON_PRESSED=resources/images/impl/gui/b
service.gui.buttons.DIAL_PAD_CALL_BUTTON_BG=resources/images/impl/gui/buttons/dialPadCallButtonBg.png
service.gui.buttons.DIAL_PAD_CALL_BUTTON_ROLLOVER_BG=resources/images/impl/gui/buttons/dialPadCallButtonBgRollover.png
service.gui.buttons.CALL_INFO=resources/images/impl/gui/buttons/callInfo.png
service.gui.buttons.ZRTP_ID_BUTTON=resources/images/impl/gui/buttons/zrtpEditId.png
# Sound level icons
service.gui.soundlevel.SOUND_LEVEL_ACTIVE=resources/images/impl/gui/common/soundlevel/soundActive.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 716 B

@ -179,7 +179,7 @@ public ZrtpSecurityPanel( CallPeerRenderer peerRenderer,
zidPropertyName = "net.java.sip.communicator.zrtp.ZIDNAME" + zidString;
configService = GuiActivator.getConfigurationService();
zidPropertyValue = configService.getString(zidPropertyName);
loadSkin();
}
@ -431,7 +431,8 @@ private void initSasLabels()
private void initZidNameButton()
{
zidNameButton = new SIPCommButton(
ImageLoader.getImage(new ImageID("service.gui.icons.ACCOUNT_ICON")));
ImageLoader.getImage(
new ImageID("service.gui.buttons.ZRTP_ID_BUTTON")));
zidNameButton.setToolTipText(GuiActivator.getResources().getI18NString(
"service.gui.ZID_NAME_BUTTON"));
@ -450,8 +451,8 @@ public void actionPerformed(ActionEvent e)
zidNameDialogThread = new ZidToNameThread();
zidNameDialogThread.start();
}
}
});
}
});
}
/**

Loading…
Cancel
Save