Hi,
test
->setFrameShadow
(QFrame::Plain);
test
->setFrameShape
(QFrame::NoFrame);
statusBar()->addWidget( test, 9 );
statusBar()->setSizeGripEnabled ( false );
QLabel *test = new QLabel("Hello");
test->setFrameShadow(QFrame::Plain);
test->setFrameShape(QFrame::NoFrame);
statusBar()->addWidget( test, 9 );
statusBar()->setSizeGripEnabled ( false );
To copy to clipboard, switch view to plain text mode
but there is still a sunken frame around the QLabel. Guess it comes from the QStatusbar, but how can i disable it, that my QLabel appears realy plain in the status bar.
And why is the space at the right side bigger than on the left side?
Thanks,
Lykurg
Bookmarks