Details
-
Bug
-
Resolution: Done
-
P2: Important
-
4.3.0
-
None
-
44f8fac4e2fc4a4258b921ac595c2826ca96e99c
Description
It is not possible to create an undockable QDockWidget which is always on top of the parent. When calling
...
QDockWidget * dock = new QDockWidget("test dock", &mainWin);
dock->setAllowedAreas (Qt::NoDockWidgetArea);
dock->setFloating(true);
dock->show();
...
then double clicking on the widget's bar will cause the QDockWidget to be docked.