mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-21 20:26:41 +00:00
changes on catalog
This commit is contained in:
parent
c36954d873
commit
35b022e5a7
1 changed files with 9 additions and 12 deletions
|
|
@ -75,6 +75,7 @@ Rectangle {
|
||||||
RowLayout {
|
RowLayout {
|
||||||
id: navBar
|
id: navBar
|
||||||
height: 184
|
height: 184
|
||||||
|
z: 20
|
||||||
|
|
||||||
anchors {
|
anchors {
|
||||||
left: parent.left
|
left: parent.left
|
||||||
|
|
@ -84,8 +85,9 @@ Rectangle {
|
||||||
Rectangle {
|
Rectangle {
|
||||||
id: appInfoPane
|
id: appInfoPane
|
||||||
height: 28
|
height: 28
|
||||||
color: "#FFFFFF"
|
color: "#efefef"
|
||||||
radius: 6
|
radius: 6
|
||||||
|
z:25
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
|
@ -128,16 +130,14 @@ Rectangle {
|
||||||
}
|
}
|
||||||
text: "Type the address of a new Dapp";
|
text: "Type the address of a new Dapp";
|
||||||
y: parent.height / 2 - this.height / 2
|
y: parent.height / 2 - this.height / 2
|
||||||
z: 20
|
z: 30
|
||||||
activeFocusOnPress: true
|
activeFocusOnPress: true
|
||||||
Keys.onReturnPressed: {
|
Keys.onReturnPressed: {
|
||||||
newBrowserTab(this.text);
|
newBrowserTab(this.text);
|
||||||
this.text = "Type the address of a new Dapp";
|
this.text = "Type the address of a new Dapp";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
z:2
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
|
|
@ -146,6 +146,7 @@ Rectangle {
|
||||||
height: 30
|
height: 30
|
||||||
color: "#BDB6B6"
|
color: "#BDB6B6"
|
||||||
radius: 6
|
radius: 6
|
||||||
|
z: 15
|
||||||
|
|
||||||
anchors {
|
anchors {
|
||||||
left: parent.left
|
left: parent.left
|
||||||
|
|
@ -156,7 +157,7 @@ Rectangle {
|
||||||
topMargin: 23
|
topMargin: 23
|
||||||
}
|
}
|
||||||
|
|
||||||
z:1
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -165,12 +166,7 @@ Rectangle {
|
||||||
WebEngineView {
|
WebEngineView {
|
||||||
objectName: "webView"
|
objectName: "webView"
|
||||||
id: webview
|
id: webview
|
||||||
anchors {
|
anchors.fill: parent
|
||||||
left: parent.left
|
|
||||||
right: parent.right
|
|
||||||
bottom: parent.bottom
|
|
||||||
top: divider.bottom
|
|
||||||
}
|
|
||||||
|
|
||||||
onLoadingChanged: {
|
onLoadingChanged: {
|
||||||
if (loadRequest.status == WebEngineView.LoadSucceededStatus) {
|
if (loadRequest.status == WebEngineView.LoadSucceededStatus) {
|
||||||
|
|
@ -188,6 +184,7 @@ Rectangle {
|
||||||
WebEngineView {
|
WebEngineView {
|
||||||
id: inspector
|
id: inspector
|
||||||
visible: false
|
visible: false
|
||||||
|
z:10
|
||||||
anchors {
|
anchors {
|
||||||
left: root.left
|
left: root.left
|
||||||
right: root.right
|
right: root.right
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue