Is it possible to control the height and width of a QDockWidget embedded in the MainWindow?
Unsolved
General and Desktop
-
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.