##// END OF EJS Templates
minor. rename buttons in qmlchartproperties
Michal Klocek -
r2091:7f09bbe8ffd5
parent child
Show More
@@ -82,35 +82,35 Flow {
82 onClicked: chart.titleColor = main.nextColor();
82 onClicked: chart.titleColor = main.nextColor();
83 }
83 }
84 Button {
84 Button {
85 text: "top min margin +"
85 text: "top margin +"
86 onClicked: chart.margins.top += 5;
86 onClicked: chart.margins.top += 5;
87 }
87 }
88 Button {
88 Button {
89 text: "top min margin -"
89 text: "top margin -"
90 onClicked: chart.margins.top -= 5;
90 onClicked: chart.margins.top -= 5;
91 }
91 }
92 Button {
92 Button {
93 text: "bottom min margin +"
93 text: "bottom margin +"
94 onClicked: chart.margins.bottom += 5;
94 onClicked: chart.margins.bottom += 5;
95 }
95 }
96 Button {
96 Button {
97 text: "bottom min margin -"
97 text: "bottom margin -"
98 onClicked: chart.margins.bottom -= 5;
98 onClicked: chart.margins.bottom -= 5;
99 }
99 }
100 Button {
100 Button {
101 text: "left min margin +"
101 text: "left margin +"
102 onClicked: chart.margins.left += 5;
102 onClicked: chart.margins.left += 5;
103 }
103 }
104 Button {
104 Button {
105 text: "left min margin -"
105 text: "left margin -"
106 onClicked: chart.margins.left -= 5;
106 onClicked: chart.margins.left -= 5;
107 }
107 }
108 Button {
108 Button {
109 text: "right min margin +"
109 text: "right margin +"
110 onClicked: chart.margins.right += 5;
110 onClicked: chart.margins.right += 5;
111 }
111 }
112 Button {
112 Button {
113 text: "right min margin -"
113 text: "right margin -"
114 onClicked: chart.margins.right -= 5;
114 onClicked: chart.margins.right -= 5;
115 }
115 }
116 }
116 }
General Comments 0
You need to be logged in to leave comments. Login now