Fix for Issue with presenters name not updating in DesktopViewWindow

This commit is contained in:
deniszgonjanin 2010-06-25 12:10:40 +00:00
parent c76db60dac
commit c67f4ebf60

View File

@ -140,7 +140,6 @@
var manager:UserManager = UserManager.getInstance();
manager.registerListener(this);
this.title = manager.getPresenter().name + " is sharing their desktop with you";
}
private function onResizeEndEvent(event:MDIWindowEvent):void {
@ -179,6 +178,8 @@
video.attachNetStream(ns);
ns.play(stream);
this.stream = stream;
this.title = manager.getPresenter().name + " is sharing their desktop with you";
}
public function stopViewing():void {