Default should be false not true

This commit is contained in:
Joe Bowser 2012-06-15 15:34:26 -07:00
parent ee0cd679d3
commit f60049f713

View File

@ -256,12 +256,12 @@ public class DroidGap extends Activity implements CordovaInterface {
LOG.d(TAG, "DroidGap.onCreate()");
super.onCreate(savedInstanceState);
if(this.getBooleanProperty("showTitle", true))
if(this.getBooleanProperty("showTitle", false))
{
getWindow().requestFeature(Window.FEATURE_NO_TITLE);
}
if(this.getBooleanProperty("setFullscreen", true))
if(this.getBooleanProperty("setFullscreen", false))
{
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);