Commit fe79635e authored by User's avatar User Committed by Evan W. Patton

Update Form.java

Fixed #1120

Change-Id: Idd679d701cfad71580cbd841a093dd35b558fc5f
parent 8a363032
...@@ -2263,8 +2263,10 @@ public class Form extends AppInventorCompatActivity ...@@ -2263,8 +2263,10 @@ public class Form extends AppInventorCompatActivity
@Override @Override
protected void maybeShowTitleBar() { protected void maybeShowTitleBar() {
if (titleBar != null) { if (showTitle) {
titleBar.setVisibility(showTitle ? View.VISIBLE : View.GONE); super.maybeShowTitleBar();
} else {
super.hideTitleBar();
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment