In the drop down menu on the contact list, make "Enable/Disable sound" and "Show/hide offline" icons correspond the current state of the toggle buttons.

cusax-fix
Yana Stamcheva 17 years ago
parent 20bff15f6c
commit f38b97735d

@ -73,15 +73,15 @@ public ActionMenuPanel()
addMoreActionsButton(
ImageLoader.getImage(
ConfigurationManager.isShowOffline()
? ImageLoader.QUICK_MENU_HIDE_OFFLINE_ICON
: ImageLoader.QUICK_MENU_SHOW_OFFLINE_ICON),
? ImageLoader.QUICK_MENU_SHOW_OFFLINE_ICON
: ImageLoader.QUICK_MENU_HIDE_OFFLINE_ICON),
"Show/Hide",
"showOffline");
addMoreActionsButton(
ImageLoader.getImage(
GuiActivator.getAudioNotifier().isMute()
? ImageLoader.QUICK_MENU_SOUND_ON_ICON
: ImageLoader.QUICK_MENU_SOUND_OFF_ICON),
? ImageLoader.QUICK_MENU_SOUND_OFF_ICON
: ImageLoader.QUICK_MENU_SOUND_ON_ICON),
"Sound",
"sound");
addMoreActionsButton(

Loading…
Cancel
Save