- remove maximize button on video windows
This commit is contained in:
parent
b28cb66f32
commit
03faf8bb2c
@ -63,9 +63,7 @@ package org.bigbluebutton.modules.videoconf.business
|
||||
protected var _minHeight:int = 120 + PADDING_VERTICAL;
|
||||
protected var aspectRatio:Number = 1;
|
||||
protected var keepAspect:Boolean = false;
|
||||
// protected var originalWidth:Number;
|
||||
// protected var originalHeight:Number;
|
||||
|
||||
|
||||
protected var mousePositionOnDragStart:Point;
|
||||
|
||||
public var streamName:String;
|
||||
|
@ -211,8 +211,6 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
|
||||
}
|
||||
|
||||
private function startPublishing():void{
|
||||
|
||||
maximizeRestoreBtn.visible = true;
|
||||
this.resizable = true;
|
||||
onResize();
|
||||
|
||||
|
@ -140,10 +140,6 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
titleBarOverlay.tabIndex = baseIndex;
|
||||
titleBarOverlay.accessibilityName = ResourceUtil.getInstance().getString('bbb.video.publish.titleBar');
|
||||
minimizeBtn.tabIndex = baseIndex+1;
|
||||
minimizeBtn.accessibilityName = ResourceUtil.getInstance().getString('bbb.video.publish.minimizeBtn');
|
||||
maximizeRestoreBtn.tabIndex = baseIndex+2;
|
||||
maximizeRestoreBtn.accessibilityName = ResourceUtil.getInstance().getString('bbb.video.publish.maximizeRestoreBtn');
|
||||
closeBtn.focusEnabled = true;
|
||||
closeBtn.tabIndex = baseIndex+3;
|
||||
|
||||
@ -311,8 +307,6 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
|
||||
e.camera = _camera;
|
||||
dispatchEvent(e);
|
||||
|
||||
maximizeRestoreBtn.visible = true;
|
||||
|
||||
// Store the userid for the publisher. This allows us to control
|
||||
// the user's status from the video window
|
||||
userID = UsersUtil.getMyUserID();
|
||||
|
@ -102,7 +102,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
this.minWidth = _minWidth;
|
||||
this.minHeight = _minHeight;
|
||||
maximizeRestoreBtn.visible = true;
|
||||
maximizeRestoreBtn.visible = false;
|
||||
this.resizable = true;
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user