Updated RoomActionsRenderer with new icons.

This commit is contained in:
Ghazi Triki 2016-05-09 13:53:10 +01:00
parent 655fa6f707
commit ca63a9e991
5 changed files with 4 additions and 0 deletions

View File

@ -328,6 +328,9 @@ package org.bigbluebutton.common
[Embed(source="assets/images/transfer.png")]
public var transfer:Class;
[Embed(source="assets/images/transferred.png")]
public var transferred:Class;
[Embed(source="assets/images/join.png")]
public var join:Class;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 265 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 196 B

After

Width:  |  Height:  |  Size: 331 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 191 B

After

Width:  |  Height:  |  Size: 536 B

View File

@ -20,6 +20,7 @@
var e:BreakoutRoomEvent = new BreakoutRoomEvent(BreakoutRoomEvent.LISTEN_IN);
e.breakoutId = data.breakoutId as String;
e.listen = listenBtn.selected;
listenBtn.setStyle("icon", listenBtn.selected ? images.transferred : images.transfer);
globalDispatch.dispatchEvent(e);
}