Browse Source

Fix hover button color

QGC4.4
Stefan Dunca 6 years ago
parent
commit
e9b59daa00
  1. 2
      src/QmlControls/QGCHoverButton.qml

2
src/QmlControls/QGCHoverButton.qml

@ -121,7 +121,7 @@ Button { @@ -121,7 +121,7 @@ Button {
PropertyChanges {
target: button;
_currentColor: enabled ? ((checked || pressed) ? qgcPal.buttonHighlight : qgcPal.button) : qgcPalDisabled.button
_currentContentColor: enabled ? ((checked || pressed) ? qgcPal.buttonHighlightText : qgcPal.buttonHighlight) : qgcPalDisabled.buttonText
_currentContentColor: enabled ? ((checked || pressed) ? qgcPal.buttonHighlightText : qgcPal.buttonText) : qgcPalDisabled.buttonText
}
PropertyChanges {
target: buttonBkRect

Loading…
Cancel
Save