diff options
author | obscuren <geffobscura@gmail.com> | 2014-02-28 20:08:41 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-02-28 20:08:41 +0800 |
commit | f6a9aa41101b6154ce5f019a77e6c897df662466 (patch) | |
tree | efd9a2b455fad864a22c705143bb11e0f0f12f9e /wallet.qml | |
parent | b72d3528bfd090252bbdb538e31eebb519083bcc (diff) | |
download | go-tangerine-f6a9aa41101b6154ce5f019a77e6c897df662466.tar go-tangerine-f6a9aa41101b6154ce5f019a77e6c897df662466.tar.gz go-tangerine-f6a9aa41101b6154ce5f019a77e6c897df662466.tar.bz2 go-tangerine-f6a9aa41101b6154ce5f019a77e6c897df662466.tar.lz go-tangerine-f6a9aa41101b6154ce5f019a77e6c897df662466.tar.xz go-tangerine-f6a9aa41101b6154ce5f019a77e6c897df662466.tar.zst go-tangerine-f6a9aa41101b6154ce5f019a77e6c897df662466.zip |
fixed about window
Diffstat (limited to 'wallet.qml')
-rw-r--r-- | wallet.qml | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/wallet.qml b/wallet.qml index 8c91039fc..e86551ad6 100644 --- a/wallet.qml +++ b/wallet.qml @@ -321,14 +321,27 @@ ApplicationWindow { id: aboutWin visible: false title: "About" - minimumWidth: 300 - maximumWidth: 300 + minimumWidth: 350 + maximumWidth: 350 maximumHeight: 200 minimumHeight: 200 + Image { + id: aboutIcon + height: 150 + width: 150 + fillMode: Image.PreserveAspectFit + smooth: true + source: "facet.png" + x: 10 + y: 10 + } + Text { - font.pointSize: 18 - text: "Eth Go" + anchors.left: aboutIcon.right + anchors.leftMargin: 10 + font.pointSize: 12 + text: "<h2>Ethereum(Go)</h2><br><h3>Development</h3>Jeffrey Wilcke<br><h3>Binary Distribution</h3>Jarrad Hope<br>" } } |