Is it possible to override only one property of a style, for example, combobox?
ComboBox { id: comboBox anchors.fill: parent style: ComboBoxStyle { label: Component { Text { text: "Players -> " + comboBox.currentText } } } }
In KDE, this combobox looks ugly because it does not use the kde theme style and uses the default one.
ComboBox with canceled styles and no style overrides: 
I need to create a combined code on this image, similar to the last, but with custom text.
source share