1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-04 06:54:39 -04:00

Only enable resize grips if size policy isn't fixed

This commit is contained in:
Jon Beniston
2022-11-09 16:15:35 +00:00
parent ee8b8ade88
commit 0d5b6ce4c9
2 changed files with 9 additions and 5 deletions
+1 -1
View File
@@ -448,7 +448,7 @@ void Workspace::stackSubWindows()
for (auto window : devices)
{
QSize size = window->minimumSizeHint();
size.expandedTo(window->minimumSize());
size = size.expandedTo(window->minimumSize());
window->resize(size);
}