-
Type:
Bug
-
Status: Closed
-
Priority:
P2: Important
-
Resolution: Done
-
Affects Version/s: 5.7.0 Beta
-
Fix Version/s: 5.7.0 RC
-
Component/s: Quick: Controls 2
-
Labels:None
-
Commits:c444fd5b641c8029b0f33681df057000160b3d5f
There's no visual difference between normal and checked buttons:
import QtQuick 2.6 import QtQuick.Controls 2.0 ApplicationWindow { width: 800 height: 400 visible: true Grid { columns: 3 spacing: 20 anchors.centerIn: parent Button { text: "Normal" } Button { text: "Down"; down: true } Button { text: "Disabled"; enabled: false } Button { text: "Checked"; checked: true } Button { text: "Down"; checked: true; down: true } Button { text: "Disabled"; checked: true; enabled: false } Button { text: "Highlighted"; highlighted: true } Button { text: "Down"; highlighted: true; down: true } Button { text: "Disabled"; highlighted: true; enabled: false } Button { text: "Hi-checked"; highlighted: true; checked: true } Button { text: "Down"; highlighted: true; checked: true; down: true } Button { text: "Disabled"; highlighted: true; checked: true; enabled: false } } }