@@ -45,15 +45,18 @@ ApplicationWindow {
45
45
46
46
// Takes care of loading all default plugins
47
47
Component .onCompleted : {
48
- addPlugin (" ./views/wallet.qml" , {noAdd: true , close: false , section: " ethereum" , active: true });
49
- root .web = addPlugin (" ./webapp.qml" , {noAdd: true , close: false , section: " ethereum" , active: true });
48
+ var wallet = addPlugin (" ./views/wallet.qml" , {noAdd: true , close: false , section: " ethereum" , active: true });
49
+ var browser = addPlugin (" ./webapp.qml" , {noAdd: true , close: false , section: " ethereum" , active: true });
50
+ root .web = browser .view ;
50
51
51
52
addPlugin (" ./views/transaction.qml" , {noAdd: true , close: false , section: " legacy" });
52
53
addPlugin (" ./views/chain.qml" , {noAdd: true , close: false , section: " legacy" });
53
54
addPlugin (" ./views/info.qml" , {noAdd: true , close: false , section: " legacy" });
54
55
addPlugin (" ./views/pending_tx.qml" , {noAdd: true , close: false , section: " legacy" });
55
56
addPlugin (" ./views/javascript.qml" , {noAdd: true , close: false , section: " legacy" });
56
57
58
+ mainSplit .setView (wallet .view , wallet .menuItem );
59
+
57
60
// Call the ready handler
58
61
gui .done ();
59
62
}
@@ -97,7 +100,7 @@ ApplicationWindow {
97
100
var view = mainView .createView (component, options)
98
101
var views = addViews (view, path, options)
99
102
100
- return views . view
103
+ return views
101
104
} catch (e) {
102
105
ethx .note (e)
103
106
}
@@ -803,7 +806,7 @@ ApplicationWindow {
803
806
anchors .top : parent .top
804
807
anchors .topMargin : 40
805
808
font .pointSize : 12
806
- text: " <h2>Mist - Amalthea </h2><br><h3>Development</h3>Jeffrey Wilcke<br>Viktor Trón<br>"
809
+ text: " <h2>Mist (0.6.5) </h2><h4>Amalthea</h4 ><br><h3>Development</h3>Jeffrey Wilcke<br>Viktor Trón<br>"
807
810
}
808
811
}
809
812
@@ -867,7 +870,7 @@ ApplicationWindow {
867
870
pastPeers .append ({text: ips .get (i)})
868
871
}
869
872
870
- pastPeers .insert (0 , {text: " 54.76.56.74 :30303" })
873
+ pastPeers .insert (0 , {text: " poc-6.ethdev.com :30303" })
871
874
}
872
875
}
873
876
0 commit comments