if the systray icon is null do not set it

cusax-fix
Yana Stamcheva 18 years ago
parent 128f1285f6
commit 83b841bb40

@ -321,7 +321,8 @@ private void firePopupMessageEvent(Object sourceObject)
*/
public void setSystrayIcon(byte[] image)
{
this.trayIcon.setIcon(new ImageIcon(image));
if (image != null)
this.trayIcon.setIcon(new ImageIcon(image));
}
/**

Loading…
Cancel
Save