Dear Maintainer,
Creating Qt GUI in python for a project and discovered the problem.
Minimum python code below. I've tested in KDE and it works as expected.
Python 3.11
```
from PySide6.QtWidgets import QApplication, QFrame, QGroupBox, QComboBox, QWidget, QVBoxLayout
import sys
class MyWidget(QWidget):
def __init__(self):
super().__init__()
groupbox = QGroupBox(self)
groupbox_layout = QVBoxLayout(groupbox)
combo = QComboBox(groupbox)
combo.addItems(["Option 1", "Option 2", "Option 3"])
groupbox_layout.addWidget(combo)
layout = QVBoxLayout(self)
layout.addWidget(groupbox)
app = QApplication(sys.argv)
window = MyWidget()
window.show()
sys.exit(app.exec())
```