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
@Override
protected void maybeShowTitleBar() {
if (titleBar != null) {
titleBar.setVisibility(showTitle ? View.VISIBLE : View.GONE);
if (showTitle) {
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