Show QSplitter child widgets titlebar

371 Views Asked by At

When I add QWidget to QSplitter, header/title bar of the child widget gets hidden automatically. is there a way to show it ??

Ex:

 QSplitter* sp = new QSplitter();
 QWidget* wid = new QWidget();
 wid->setWindowTitle("Mytitle);
 sp->addWidget(wid);

In this case wid title bar gets hidden automatically, I want to show it.

0

There are 0 best solutions below