fix issue #3106
This commit is contained in:
parent
4c437aebb7
commit
dc5bacc578
@ -71,6 +71,8 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
|
||||
}
|
||||
chatNoiseCheckBox.selected = Accessibility.active;
|
||||
changeChatNoise();
|
||||
|
||||
lockSettingsChanged();
|
||||
}
|
||||
|
||||
public function accessibleClick(event:KeyboardEvent):void{
|
||||
@ -94,6 +96,8 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
|
||||
protected function openPrivateChat(event:Event):void{
|
||||
if (usersList.selectedIndex == -1) return;
|
||||
|
||||
if (!usersList.visible || !usersList.enabled) return;
|
||||
|
||||
var chatWithUserID:String = usersList.selectedItem.userID;
|
||||
|
||||
// Don't want to be chatting with ourself.
|
||||
@ -121,7 +125,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
|
||||
}
|
||||
}
|
||||
|
||||
private function lockSettingsChanged(e:Event):void {
|
||||
private function lockSettingsChanged(e:Event = null):void {
|
||||
|
||||
if (UsersUtil.amIModerator() || UsersUtil.amIPresenter()) return; // Settings only affect viewers.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user