Resizing annotations only when we change the display mode in DesktopViewWindow
This commit is contained in:
parent
825b39df1b
commit
323dae6b61
@ -186,8 +186,18 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
|
||||
}
|
||||
|
||||
private function resizeCanvasChildren():void{
|
||||
var widthResizeRatio:Number = video.width/whiteboardCanvasHolder.width;
|
||||
var heightResizeRatio:Number = video.height/whiteboardCanvasHolder.height;
|
||||
var widthResizeRatio:Number = 1;
|
||||
var heightResizeRatio:Number = 1;
|
||||
|
||||
if(fullScreen && whiteboardCanvasHolder.width == windowedWidth) {
|
||||
widthResizeRatio = fullScreenWidth/windowedWidth;
|
||||
heightResizeRatio = fullScreenHeight/windowedHeight;
|
||||
}
|
||||
else if(!fullScreen && whiteboardCanvasHolder.width == fullScreenWidth){
|
||||
widthResizeRatio = windowedWidth/fullScreenWidth;
|
||||
heightResizeRatio = windowedHeight/fullScreenHeight;
|
||||
}
|
||||
|
||||
for (var i:int = 0 ; i < this.whiteboardCanvasHolder.rawChildren.numChildren; i++) {
|
||||
this.whiteboardCanvasHolder.rawChildren.getChildAt(i).width =
|
||||
this.whiteboardCanvasHolder.rawChildren.getChildAt(i).width * widthResizeRatio;
|
||||
|
Loading…
Reference in New Issue
Block a user