aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorAlexandre Van de Sande <alex.vandesande@ethdev.com>2015-02-17 18:23:28 +0800
committerAlexandre Van de Sande <alex.vandesande@ethdev.com>2015-02-17 18:23:28 +0800
commit0de1d1dd588266961740b598da4e01e5efdf2d1f (patch)
tree0b528a14e4033b83fd077f8c41d637761ca9d3bc /cmd
parenta22711a7b569fd9d29fe03591ef2c39d793877b1 (diff)
downloadgo-tangerine-0de1d1dd588266961740b598da4e01e5efdf2d1f.tar
go-tangerine-0de1d1dd588266961740b598da4e01e5efdf2d1f.tar.gz
go-tangerine-0de1d1dd588266961740b598da4e01e5efdf2d1f.tar.bz2
go-tangerine-0de1d1dd588266961740b598da4e01e5efdf2d1f.tar.lz
go-tangerine-0de1d1dd588266961740b598da4e01e5efdf2d1f.tar.xz
go-tangerine-0de1d1dd588266961740b598da4e01e5efdf2d1f.tar.zst
go-tangerine-0de1d1dd588266961740b598da4e01e5efdf2d1f.zip
removed status bar code
Diffstat (limited to 'cmd')
-rw-r--r--cmd/mist/assets/qml/main.qml73
1 files changed, 0 insertions, 73 deletions
diff --git a/cmd/mist/assets/qml/main.qml b/cmd/mist/assets/qml/main.qml
index 07e6d36da..0a8776345 100644
--- a/cmd/mist/assets/qml/main.qml
+++ b/cmd/mist/assets/qml/main.qml
@@ -249,79 +249,6 @@ ApplicationWindow {
}
}
- statusBar: StatusBar {
- //height: 32
- visible: false
-
- id: statusBar
- Label {
- //y: 6
- id: walletValueLabel
-
- font.pixelSize: 10
- styleColor: "#797979"
- }
-
- /*
- Label {
- //y: 6
- objectName: "miningLabel"
- visible: true
- font.pixelSize: 10
- anchors.right: lastBlockLabel.left
- anchors.rightMargin: 5
- }
-
- Label {
- id: lastBlockLabel
- objectName: "lastBlockLabel"
- visible: true
- text: "---"
- font.pixelSize: 10
- anchors.right: peerGroup.left
- anchors.rightMargin: 5
- }
- */
-
- ProgressBar {
- visible: false
- id: downloadIndicator
- value: 0
- objectName: "downloadIndicator"
- y: -4
- x: statusBar.width / 2 - this.width / 2
- width: 160
- }
-
- Label {
- visible: false
- objectName: "downloadLabel"
- //y: 7
- anchors.left: downloadIndicator.right
- anchors.leftMargin: 5
- font.pixelSize: 10
- text: "0 / 0"
- }
-
-
- RowLayout {
- id: peerGroup
- //y: 7
- anchors.right: parent.right
- MouseArea {
- onDoubleClicked: peerWindow.visible = true
- anchors.fill: parent
- }
-
- Label {
- id: peerCounterLabel
- font.pixelSize: 10
- text: "0 / 0"
- }
- }
- }
-
-
property var blockModel: ListModel {
id: blockModel
}