1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-11 13:24:19 -04:00

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
+1 -1
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)