Merge pull request #1403 from srcejon/stack_use_full_width

Stack workspace: Use full width for spectrum when no channels
This commit is contained in:
Edouard Griffiths 2022-09-06 21:14:55 +02:00 committed by GitHub
commit 664e627191
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -467,7 +467,7 @@ void Workspace::stackSubWindows()
}
// Calculate width & height needed for channels
int channelMinWidth = m_userChannelMinWidth;
int channelMinWidth = channels.size() > 0 ? m_userChannelMinWidth : 0;
int channelTotalMinHeight = 0;
int expandingChannels = 0;
for (auto window : channels)