diff options
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") } } |
