diff options
| author | Tomasz Sterna <tomek@xiaoka.com> | 2014-08-01 14:09:15 +0200 |
|---|---|---|
| committer | Tomasz Sterna <tomek@xiaoka.com> | 2014-08-02 00:55:18 +0200 |
| commit | 400db2389c6244024b5fe855059e37bb771b7903 (patch) | |
| tree | 1c0b62a566692f06b38d836af5dc1009f717f974 /app/qml | |
| parent | ccf58d3eca2ae0d1ad6cac3262f246c041475ebb (diff) | |
"Send application log to developer" button on About page
Diffstat (limited to 'app/qml')
| -rw-r--r-- | app/qml/pages/AboutPage.qml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/qml/pages/AboutPage.qml b/app/qml/pages/AboutPage.qml index 6d8d18e..08b39cc 100644 --- a/app/qml/pages/AboutPage.qml +++ b/app/qml/pages/AboutPage.qml @@ -63,6 +63,19 @@ Page { icon.source: "../images/btn_donate.png" 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 + } + + Button { + text: "Send application log to developer" + width: parent.width + onClicked: Qt.openUrlExternally("mailto:bugs@xiaoka.com?subject=pebbled issue&body=please describe your issue&attachment=/home/nemo/.cache/pebbled/pebble.log") + } } } } |
