Details
-
Bug
-
Resolution: Duplicate
-
Not Evaluated
-
None
-
6.2.2
-
None
Description
Some controls with Fusion style have light gray text color.
import QtQuick import QtQuick.Controls import QtQuick.Controls.Fusion Window { width: 640 height: 480 visible: true title: qsTr("Hello World") Column { spacing: 2 Button { text: qsTr("Open") } ToolButton { text: qsTr("Open") } ComboBox { y: 50 implicitWidth: 200 textRole: "text" valueRole: "value" model: [ { value: Text.QtRendering, text: "QtRendering" }, { value: Text.NativeRendering, text: "NativeRendering" } ] } SpinBox {} CheckBox { text: qsTr("CheckBox") } } }
Attachments
Issue Links
- duplicates
-
QTBUG-99276 Fusion style sets button text color to white automatically
- Closed
- relates to
-
QTBUG-99276 Fusion style sets button text color to white automatically
- Closed