fix position of lock and unlock images in the user list; change emoji order

This commit is contained in:
Felipe Cecagno 2016-11-19 23:44:10 -02:00
parent e13aba9184
commit 8a75219ad6
2 changed files with 4 additions and 4 deletions

View File

@ -274,9 +274,9 @@
muteBtn.setStyle("icon", images.audio_muted); muteBtn.setStyle("icon", images.audio_muted);
if (data.userLocked == rolledOverLock) if (data.userLocked == rolledOverLock)
lockBtn.setStyle("icon", images.unlocked); lockBtn.setStyle("icon", images.unlocked_20);
else else
lockBtn.setStyle("icon", images.locked); lockBtn.setStyle("icon", images.locked_20);
} }
} }
} }

View File

@ -35,7 +35,7 @@ package org.bigbluebutton.modules.users.views {
import org.bigbluebutton.util.i18n.ResourceUtil; import org.bigbluebutton.util.i18n.ResourceUtil;
public class MoodMenu extends VBox { public class MoodMenu extends VBox {
private const MOODS:Array = ["raiseHand", "agree", "disagree", "applause", "speakFaster", "speakSlower", private const MOODS:Array = ["raiseHand", "applause", "agree", "disagree", "speakFaster", "speakSlower",
"speakLouder", "speakSofter", "beRightBack", "happy", "sad", "clear"]; "speakLouder", "speakSofter", "beRightBack", "happy", "sad", "clear"];
private var dispatcher:Dispatcher; private var dispatcher:Dispatcher;
@ -102,4 +102,4 @@ package org.bigbluebutton.modules.users.views {
PopUpManager.removePopUp(this); PopUpManager.removePopUp(this);
} }
} }
} }