I wanted to center align text items in a QComboBox but to do this I need to set Editable to true. When I do this the look changes significantly. This is on Windows 7.
QComboBox when setEditable(false)
QComboBox when setEditable(true)
I think the change happens because QLineEdit has a different default appearance than QComboBox. What can I do to get them both to look the same? Thanks,