2

When i'm creating tab widget in qt i have white borders. I tried to delete this but when i'm adding stylesheet border: none i also have white borders on top and bottom For example i added tab widget and selected this style sheet:

*{
background: silver;
border:none;
}

In example i had set background: silver

Example

Is there a decision of this trouble?

eyllanesc
  • 235,170
  • 19
  • 170
  • 241
Desync192
  • 71
  • 3

1 Answers1

4

I found decision: use style sheet

.QTabWidget::pane{
    border:none
}
Desync192
  • 71
  • 3