diff --git a/bigbluebutton-client/src/org/bigbluebutton/main/view/components/MainCanvas.mxml b/bigbluebutton-client/src/org/bigbluebutton/main/view/components/MainCanvas.mxml index 68d262f572..f5358e4418 100755 --- a/bigbluebutton-client/src/org/bigbluebutton/main/view/components/MainCanvas.mxml +++ b/bigbluebutton-client/src/org/bigbluebutton/main/view/components/MainCanvas.mxml @@ -50,7 +50,7 @@ leftWindowHeight = this.height/2 - 30; leftWindowWidth = (this.width / 20) * 3; rightWindowHeight = this.height - 10; - rightWindowWidth = this.width / 3; + rightWindowWidth = (this.width / 20) * 6; centerWindowHeight = this.height - 10; centerWindowWidth = this.width / 2; @@ -72,7 +72,7 @@ win.height = leftWindowHeight; break; case MIDDLE: - x = this.width - rightWindowWidth - centerWindowWidth; + x = leftWindowWidth + 10; //this.width - rightWindowWidth - centerWindowWidth + 20; y = 1; win.width = centerWindowWidth; win.height = centerWindowHeight;