aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-02-14 01:33:08 +0800
committerobscuren <geffobscura@gmail.com>2015-02-14 01:33:08 +0800
commit384305f4aa8daef684efc76a374e1d6686c9c83f (patch)
tree68cfd788d01dbe008153086a6a8cd5be4a358046 /cmd
parent4d49d7b5a64774990c55dc2046195985bd716259 (diff)
downloadgo-tangerine-384305f4aa8daef684efc76a374e1d6686c9c83f.tar
go-tangerine-384305f4aa8daef684efc76a374e1d6686c9c83f.tar.gz
go-tangerine-384305f4aa8daef684efc76a374e1d6686c9c83f.tar.bz2
go-tangerine-384305f4aa8daef684efc76a374e1d6686c9c83f.tar.lz
go-tangerine-384305f4aa8daef684efc76a374e1d6686c9c83f.tar.xz
go-tangerine-384305f4aa8daef684efc76a374e1d6686c9c83f.tar.zst
go-tangerine-384305f4aa8daef684efc76a374e1d6686c9c83f.zip
Fixed QML errors
Diffstat (limited to 'cmd')
-rw-r--r--cmd/mist/assets/qml/views/catalog.qml1
-rw-r--r--cmd/mist/assets/qml/views/miner.qml3
-rw-r--r--cmd/mist/assets/qml/views/wallet.qml4
3 files changed, 1 insertions, 7 deletions
diff --git a/cmd/mist/assets/qml/views/catalog.qml b/cmd/mist/assets/qml/views/catalog.qml
index a7832e9fa..884493eef 100644
--- a/cmd/mist/assets/qml/views/catalog.qml
+++ b/cmd/mist/assets/qml/views/catalog.qml
@@ -137,7 +137,6 @@ Rectangle {
anchors {
left: root.left
right: root.right
- top: sizeGrip.bottom
bottom: root.bottom
}
diff --git a/cmd/mist/assets/qml/views/miner.qml b/cmd/mist/assets/qml/views/miner.qml
index 0938644b9..6a199a925 100644
--- a/cmd/mist/assets/qml/views/miner.qml
+++ b/cmd/mist/assets/qml/views/miner.qml
@@ -19,9 +19,6 @@ Rectangle {
id: lastBlockLabel
objectName: "lastBlockLabel"
text: "---"
- font.pixelSize: 10
- anchors.right: peerGroup.left
- anchors.rightMargin: 5
onTextChanged: {
//menuItem.secondaryTitle = text
}
diff --git a/cmd/mist/assets/qml/views/wallet.qml b/cmd/mist/assets/qml/views/wallet.qml
index 838fa8749..d1d38bb72 100644
--- a/cmd/mist/assets/qml/views/wallet.qml
+++ b/cmd/mist/assets/qml/views/wallet.qml
@@ -18,10 +18,8 @@ Rectangle {
Label {
objectName: "balanceLabel"
visible: false
- font.pixelSize: 10
- anchors.right: lastBlockLabel.left
- anchors.rightMargin: 5
onTextChanged: {
+ balance.text = text
menuItem.secondaryTitle = text
}
}