Hello ,

I ahve used qt manhattan style https://github.com/tegesoft/qt-manhattan-style to create a fancy tab widget, I have used a palette to change the color of the widget

Manhattan::FancyTabWidget* ptab = new Manhattan::FancyTabWidget(this);
QPalette* palette = new QPalette();
QLinearGradient linearGradient(QPointF(50, 50), QPointF(200, 200));
linearGradient.setColorAt(0, Qt::lightGray);
linearGradient.setColorAt(1, Qt::gray);
palette->setBrush(QPalette::Window,*(new QBrush(linearGradient)));
ptab->setPalette(*palette);

setCentralWidget(ptab);

the pallete did not take effect. how can I change the back ground of the fancy tab widget to a gradient color.

Regards