Skip to content
Snippets Groups Projects
Commit b880bbca authored by Richard Alam's avatar Richard Alam
Browse files

- add files and directories to .gitignore

- fix problem where webcam icon stays disabled when webcam is closed
parent e4fd7268
No related branches found
No related tags found
No related merge requests found
.project
build
lib
.scala_dependencies
.manager
......@@ -37,17 +37,20 @@
import org.bigbluebutton.util.i18n.ResourceUtil;
private var images:Images = new Images();
private var streamName:String = "";
private function viewCamera():void {
LogUtil.debug("ViewersModule - sending camera view request for stream" + data.streamName);
streamIcon.enabled = false;
streamName = data.streamName;
dispatchEvent(new ViewCameraEvent(data.streamName, data.name));
}
private function onViewVideoCloseEvent(event:BBBEvent):void {
LogUtil.debug("ViewWindoClosing event: " + event.message);
if (data.streamName == event.message) {
if (streamName == event.message) {
streamIcon.enabled = true;
streamName = "";
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment