0

enter image description here

I want to delete the white lines of the tabwidget on the right and bottom side, but I don't know how.

I've tried to set the border-right-color and border-bottom-color, but it doesn't work.

eyllanesc
  • 235,170
  • 19
  • 170
  • 241
liushi
  • 83
  • 7

1 Answers1

0

Try to make it via css

Like that in .qrc in .css:

QTabWidget
{ 
   border: 3px solid grey; 
}

or via QWidget::setStyleSheet(const QString &styleSheet)

bogdyname
  • 358
  • 2
  • 10