Open ioneater opened 1 year ago
Same issue here. Workaround to adapt QComboBox to QLineEdit, QSpinBox, etc.:
qdarktheme.setup_theme(additional_qss="QComboBox { min-height: 1em; padding: 3px 4px; }")
Thank you! I ended up custimizing the standardPallete and styleSheet instead of using this theme, which gave similar results and did not require any workarounds.
I have the same issue with QTableView, there is so much extra space in the cells when qdarktheme is applied than standard
I really like this theme. To make my layout consistent I need to reduce the height of all QComboBoxes. Before qdarktheme.setup_theme this can be done by setting maximumHeight or stylesheets, but after qdarktheme.setup_theme these no longer work. Is there a way to change the height or to not apply the style to QComboBoxes so they can be styled individually?
Below is a simple example. After you click on qdarktheme, reduceHeight is ineffective.