set default values to true for layout options

This commit is contained in:
Richard Alam 2011-10-05 01:26:36 -04:00
parent fef170ae3e
commit 9926a5c83b

View File

@ -3,16 +3,16 @@ package org.bigbluebutton.main.model
public class LayoutOptions
{
[Bindable]
public var showLogButton:Boolean = false;
public var showLogButton:Boolean = true;
[Bindable]
public var showVideoLayout:Boolean = false;
public var showVideoLayout:Boolean = true;
[Bindable]
public var showResetLayout:Boolean = false;
public var showResetLayout:Boolean = true;
[Bindable]
public var showToolbar:Boolean = false;
public var showToolbar:Boolean = true;
[Bindable]
public var showHelpButton:Boolean = true;