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

Do not make multi-windows visible if there is only one window #1675

Merged
merged 2 commits into from
Aug 27, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,9 @@ public void enterResizeMode() {

public void exitResizeMode() {
for (WindowWidget window : getCurrentWindows()) {
window.getTopBar().setVisible(true);
if (getCurrentWindows().size() > 1) {
window.getTopBar().setVisible(true);
}
}
}

Expand Down