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

Commit

Permalink
Do not show the multi-window controls if the window is in theatre mod…
Browse files Browse the repository at this point in the history
…e. (#1739)
  • Loading branch information
keianhzo authored and bluemarvin committed Sep 3, 2019
1 parent a771f1f commit 03c4d09
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@ public void enterResizeMode() {
public void exitResizeMode() {
for (WindowWidget window : getCurrentWindows()) {
if (getCurrentWindows().size() > 1 || isInPrivateMode()) {
window.getTopBar().setVisible(true);
window.getTopBar().setVisible(window != mFullscreenWindow);
}
}
}
Expand Down

0 comments on commit 03c4d09

Please sign in to comment.