Is there a way to modify (remove) the line behind a permanent widget in a QStatusbar?
I don't know if it's important, but that's how I added the labels to the status bar:
wStyleTest::wStyleTest(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::wStyleTest)
{
// ...
ui->statusbar->addPermanentWidget(ui->lblPermWidget1);
ui->statusbar->addPermanentWidget(ui->lblPermWidget2);
// ...
Subclass
QProxyStyle
and reimplement thedrawPrimitive
method. In there, check for theQStyle::PE_FrameStatusBar
element and return from it instead of calling the base method.Apply it to your app either in your main.cpp or constructor of MainWindow: