aboutsummaryrefslogtreecommitdiffstats
path: root/mist/assets/qml
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-09-22 22:30:43 +0800
committerobscuren <geffobscura@gmail.com>2014-09-22 22:30:43 +0800
commit761af68df4093ef4925ef4df222925773fbaf7c1 (patch)
tree1590e2cc2fd2ea52351c67afcc4add689b61e9db /mist/assets/qml
parent430a4894462487552aaf7a415d1266c50919460d (diff)
downloadgo-tangerine-761af68df4093ef4925ef4df222925773fbaf7c1.tar
go-tangerine-761af68df4093ef4925ef4df222925773fbaf7c1.tar.gz
go-tangerine-761af68df4093ef4925ef4df222925773fbaf7c1.tar.bz2
go-tangerine-761af68df4093ef4925ef4df222925773fbaf7c1.tar.lz
go-tangerine-761af68df4093ef4925ef4df222925773fbaf7c1.tar.xz
go-tangerine-761af68df4093ef4925ef4df222925773fbaf7c1.tar.zst
go-tangerine-761af68df4093ef4925ef4df222925773fbaf7c1.zip
Changed peer server default
Diffstat (limited to 'mist/assets/qml')
-rw-r--r--mist/assets/qml/wallet.qml13
1 files changed, 8 insertions, 5 deletions
diff --git a/mist/assets/qml/wallet.qml b/mist/assets/qml/wallet.qml
index c4379cd47..4bf9887f5 100644
--- a/mist/assets/qml/wallet.qml
+++ b/mist/assets/qml/wallet.qml
@@ -45,8 +45,9 @@ ApplicationWindow {
// Takes care of loading all default plugins
Component.onCompleted: {
- addPlugin("./views/wallet.qml", {noAdd: true, close: false, section: "ethereum", active: true});
- root.web = addPlugin("./webapp.qml", {noAdd: true, close: false, section: "ethereum", active: true});
+ var wallet = addPlugin("./views/wallet.qml", {noAdd: true, close: false, section: "ethereum", active: true});
+ var browser = addPlugin("./webapp.qml", {noAdd: true, close: false, section: "ethereum", active: true});
+ root.web = browser.view;
addPlugin("./views/transaction.qml", {noAdd: true, close: false, section: "legacy"});
addPlugin("./views/chain.qml", {noAdd: true, close: false, section: "legacy"});
@@ -54,6 +55,8 @@ ApplicationWindow {
addPlugin("./views/pending_tx.qml", {noAdd: true, close: false, section: "legacy"});
addPlugin("./views/javascript.qml", {noAdd: true, close: false, section: "legacy"});
+ mainSplit.setView(wallet.view, wallet.menuItem);
+
// Call the ready handler
gui.done();
}
@@ -97,7 +100,7 @@ ApplicationWindow {
var view = mainView.createView(component, options)
var views = addViews(view, path, options)
- return views.view
+ return views
} catch(e) {
ethx.note(e)
}
@@ -803,7 +806,7 @@ ApplicationWindow {
anchors.top: parent.top
anchors.topMargin: 40
font.pointSize: 12
- text: "<h2>Mist - Amalthea</h2><br><h3>Development</h3>Jeffrey Wilcke<br>Viktor Trón<br>"
+ text: "<h2>Mist (0.6.5)</h2><h4>Amalthea</h4><br><h3>Development</h3>Jeffrey Wilcke<br>Viktor Trón<br>"
}
}
@@ -867,7 +870,7 @@ ApplicationWindow {
pastPeers.append({text: ips.get(i)})
}
- pastPeers.insert(0, {text: "54.76.56.74:30303"})
+ pastPeers.insert(0, {text: "poc-6.ethdev.com:30303"})
}
}