From 7f09bbe8ffd5aa8009f57767c4a806a419544f3e 2012-09-24 07:57:34 From: Michal Klocek Date: 2012-09-24 07:57:34 Subject: [PATCH] minor. rename buttons in qmlchartproperties --- diff --git a/tests/qmlchartproperties/qml/qmlchartproperties/ChartEditorProperties.qml b/tests/qmlchartproperties/qml/qmlchartproperties/ChartEditorProperties.qml index 7130bd1..1a945ea 100644 --- a/tests/qmlchartproperties/qml/qmlchartproperties/ChartEditorProperties.qml +++ b/tests/qmlchartproperties/qml/qmlchartproperties/ChartEditorProperties.qml @@ -82,35 +82,35 @@ Flow { onClicked: chart.titleColor = main.nextColor(); } Button { - text: "top min margin +" + text: "top margin +" onClicked: chart.margins.top += 5; } Button { - text: "top min margin -" + text: "top margin -" onClicked: chart.margins.top -= 5; } Button { - text: "bottom min margin +" + text: "bottom margin +" onClicked: chart.margins.bottom += 5; } Button { - text: "bottom min margin -" + text: "bottom margin -" onClicked: chart.margins.bottom -= 5; } Button { - text: "left min margin +" + text: "left margin +" onClicked: chart.margins.left += 5; } Button { - text: "left min margin -" + text: "left margin -" onClicked: chart.margins.left -= 5; } Button { - text: "right min margin +" + text: "right margin +" onClicked: chart.margins.right += 5; } Button { - text: "right min margin -" + text: "right margin -" onClicked: chart.margins.right -= 5; } }