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