Index: sources/gui/qml/components/TouchRect.qml =================================================================== diff -u -r227f28b202f81ab3dd04a81868697025ccab6220 -r94f7349bd073a732dba5295250fc0e26f740743c --- sources/gui/qml/components/TouchRect.qml (.../TouchRect.qml) (revision 227f28b202f81ab3dd04a81868697025ccab6220) +++ sources/gui/qml/components/TouchRect.qml (.../TouchRect.qml) (revision 94f7349bd073a732dba5295250fc0e26f740743c) @@ -36,7 +36,7 @@ property color textColor : Colors.textButton property color borderColor : Colors.borderButton - property color backgroungColor : Colors.backgroundButtonNormal + property color backgroundColor : Colors.backgroundButtonNormal onDurationChanged: { _colorAnimationOn .duration = duration; @@ -51,12 +51,12 @@ } } else { _clickAnimation.stop() - _root.color = backgroungColor + _root.color = backgroundColor } } - onBackgroungColorChanged: { - _root.color = backgroungColor + onBackgroundColorChanged: { + _root.color = backgroundColor } onDisabledChanged: { @@ -72,7 +72,7 @@ width : Variables.touchRectWidth height : Variables.touchRectHeight radius : Variables.touchRectRadius - color : backgroungColor + color : backgroundColor border { color: Colors.borderButton width: Variables.borderWidth @@ -93,10 +93,10 @@ SequentialAnimation { id: _clickAnimation running: false onStopped: { - _root.color = backgroungColor + _root.color = backgroundColor } onFinished: { - _root.color = backgroungColor + _root.color = backgroundColor } PropertyAnimation { id: _colorAnimationOn ; target: _root; property: "color"; to: _root.border.color; duration: duration; } PropertyAnimation { id: _colorAnimationOff; target: _root; property: "color"; to: _root.color ; duration: duration; }