PyQt5: Can't see close buttons in QTabBar
问题 I can't see the close button on individual tabs when using PyQt5. I can close the individual tabs when I click where I know the close button should be, but can't see the button outright: #!/bin/python3 import sys from PyQt5.QtWidgets import (QApplication, QVBoxLayout, QTabBar, QFrame) class App(QFrame): def __init__(self): super().__init__() self.setWindowTitle("Web Browser") self.setBaseSize(683, 384) self.CreateApp() def CreateApp(self): self.layout = QVBoxLayout() self.tab_Bar = QTabBar