2

I have a QTabBar looking like this. The screenshot does not show the arrow scroll buttons on its right side. What is the thing on left side called (looking like a torn edge)? It serves as a scroll left button. Is it the tear indicator? I found something like this in the style sheets:

QTabBar::tear { image: url(tear_indicator.png); }

How can I disable it?

QTabBar

^ here, looking like a torn edge, clickable, works like scroll left

Remark: The tab bar is the one appearing automatically with QDockWidget s, none I have created on my own.

Community
  • 1
  • 1
Horst Walter
  • 13,663
  • 32
  • 126
  • 228

1 Answers1

4

You can remove it by StyleSheet

QTabBar::tear {
    width: 0px; 
    border: none;
}
Sergey
  • 56
  • 2