From 7cf34a627de71d47ca3053d17a0c3e43de030471 Mon Sep 17 00:00:00 2001 From: Tomasz Sterna Date: Sat, 2 Aug 2014 01:16:27 +0200 Subject: Reworked AboutPage --- app/qml/pages/AboutPage.qml | 28 +++++++++++++++++++++------- 1 file changed, 21 insertions(+), 7 deletions(-) diff --git a/app/qml/pages/AboutPage.qml b/app/qml/pages/AboutPage.qml index 08b39cc..200abdf 100644 --- a/app/qml/pages/AboutPage.qml +++ b/app/qml/pages/AboutPage.qml @@ -61,19 +61,33 @@ Page { margins: Theme.paddingMedium } icon.source: "../images/btn_donate.png" + height: icon.height - Theme.paddingLarge onClicked: Qt.openUrlExternally("https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MAGN86VCARBSA") } + Label { - text: "Your donations make applications better." - font.pixelSize: Theme.fontSizeMedium - width: parent.width - horizontalAlignment: Text.AlignHCenter - wrapMode: Text.WordWrap + text: qsTr("Bugs?") + font.family: Theme.fontFamilyHeading + color: Theme.highlightColor + anchors.right: parent.right + anchors.rightMargin: Theme.paddingMedium + } + Button { + text: "Open Bug Tracker" + anchors { + left: parent.left + right: parent.right + margins: Theme.paddingLarge + } + onClicked: Qt.openUrlExternally("https://github.com/smokku/pebble/issues") } - Button { text: "Send application log to developer" - width: parent.width + anchors { + left: parent.left + right: parent.right + margins: Theme.paddingLarge + } onClicked: Qt.openUrlExternally("mailto:bugs@xiaoka.com?subject=pebbled issue&body=please describe your issue&attachment=/home/nemo/.cache/pebbled/pebble.log") } } -- cgit v1.2.3