fix(StatusTabButton): Hide bottom dash in disabled state (#729)
This commit is contained in:
parent
b816643e2d
commit
c0639d8b8e
|
@ -66,7 +66,7 @@ TabButton {
|
|||
Rectangle {
|
||||
anchors.bottom: parent.bottom
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
visible: root.checked || root.hovered
|
||||
visible: root.enabled && (root.checked || root.hovered)
|
||||
implicitWidth: 24
|
||||
implicitHeight: 2
|
||||
radius: 4
|
||||
|
|
Loading…
Reference in New Issue