Row {
id: row3
anchors.horizontalCenter: parent.horizontalCenter
spacing: units.gu(1)
width: parent.width
Button {
text: i18n.tr("1")
width: (row3.width / 3); height: (units.gu(8))
color: UbuntuColors.darkGrey
onClicked: parent.parent.focused.actualValue += 1 * mathPart
}
Button {
text: i18n.tr("2")
width: (row3.width / 3); height: (units.gu(8))
color: UbuntuColors.darkGrey
onClicked: parent.parent.focused.actualValue += 2 * mathPart
}
Button {
text: i18n.tr("3")
width: (row3.width / 3); height: (units.gu(8))
color: UbuntuColors.darkGrey
onClicked: parent.parent.focused.actualValue += 3 * mathPart
}
}