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);
if (data.userLocked == rolledOverLock)
lockBtn.setStyle("icon", images.unlocked);
lockBtn.setStyle("icon", images.unlocked_20);
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;
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"];
private var dispatcher:Dispatcher;