diff options
| author | Tomasz Sterna <tomek@xiaoka.com> | 2014-08-02 01:16:27 +0200 |
|---|---|---|
| committer | Tomasz Sterna <tomek@xiaoka.com> | 2014-08-02 01:16:42 +0200 |
| commit | 7cf34a627de71d47ca3053d17a0c3e43de030471 (patch) | |
| tree | 7b846c84bb4dc24a4a390a78c171f2559b074a4d /app | |
| parent | 400db2389c6244024b5fe855059e37bb771b7903 (diff) | |
Reworked AboutPage
Diffstat (limited to 'app')
| -rw-r--r-- | app/qml/pages/AboutPage.qml | 28 |
1 files 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") } } |
