[solved] tabifyDockWidget problem
-
I've found a solution, but not to elegant:
@
removeDockWidget(dw1);
removeDockWidget(dw2);
addDockWidget(Qt::LeftDockWidgetArea, dw1);
addDockWidget(Qt::RightDockWidgetArea, dw2);
dw1->show();
dw2->show();
@First I had to remove the dockwidgets and after I had to newly add them. This will DIStabify the dockwidgets...