diff --git a/facet.png b/facet.png new file mode 100644 index 0000000000000000000000000000000000000000..49a266e96a6c0322cfa927698b10efd35b97fa05 Binary files /dev/null and b/facet.png differ diff --git a/wallet.qml b/wallet.qml index 8c91039fcf4295e98c64f1951ca6565208a9c089..e86551ad68b909380306cb4697e5c41b79beca33 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>" } }