Qt 6.11 is out! See what's new in the release
blog
Is it possible to control the height and width of a QDockWidget embedded in the MainWindow?
-
Hi
You can use
dockw->setFixedSize(400, 400);
to have them stay same size.
You can also set minimum/max. -
Or you can use resizeDocks() method to size them dynamically.