Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit 03c4d09

Browse files
keianhzobluemarvin
authored andcommitted
Do not show the multi-window controls if the window is in theatre mode. (#1739)
1 parent a771f1f commit 03c4d09

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • app/src/common/shared/org/mozilla/vrbrowser/ui/widgets

app/src/common/shared/org/mozilla/vrbrowser/ui/widgets/Windows.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ public void enterResizeMode() {
751751
public void exitResizeMode() {
752752
for (WindowWidget window : getCurrentWindows()) {
753753
if (getCurrentWindows().size() > 1 || isInPrivateMode()) {
754-
window.getTopBar().setVisible(true);
754+
window.getTopBar().setVisible(window != mFullscreenWindow);
755755
}
756756
}
757757
}

0 commit comments

Comments
 (0)