Modify the style to show a scroll bar for combo boxes

This commit is contained in:
Veronica Berglyd Olsen
2025-06-19 19:29:14 +02:00
parent 110d8b8e59
commit dbf0b5d3f7
5 changed files with 21 additions and 7 deletions
+2 -1
View File
@@ -296,7 +296,8 @@ def _createApp(style: str) -> QApplication:
"""Create the app. This is done in a function to make it easier to
block app creation during testing.
"""
app = QApplication([CONFIG.appName, f"-style={style}"])
app = QApplication([CONFIG.appName])
app.setStyle(style)
app.setApplicationName(CONFIG.appName)
app.setApplicationVersion(__version__)
app.setOrganizationDomain(__domain__)