PDA

View Full Version : Vertical line in StatusBar



corban_dallas
6th August 2013, 16:36
After add my widget in status bar,

statusBar()->addWidget(wd_status_bar);

i get a vertical line. I have tried everything I know, but I could not get rid of it. Maybe someone can help me delete this line?

9392

ChrisW67
6th August 2013, 21:46
Maybe you can tell us what " everything I know" is.

rawfool
7th August 2013, 05:52
Remove the border.

statusBar()->setStyleSheet("QStatusBar::item { border: none; };");

corban_dallas
7th August 2013, 09:19
Remove the border.

statusBar()->setStyleSheet("QStatusBar::item { border: none; };");
Thank you sir!