Merge pull request #195

45f2848 add missing tab separators (Jaquee)
This commit is contained in:
Riccardo Spagni
2016-11-24 12:44:36 +02:00

View File

@@ -242,7 +242,7 @@ Rectangle {
anchors.left: parent.left anchors.left: parent.left
anchors.right: parent.right anchors.right: parent.right
anchors.leftMargin: 16 anchors.leftMargin: 16
color: transferButton.checked || receiveButton.checked ? "#1C1C1C" : "#505050" color: "#505050"
height: 1 height: 1
} }
@@ -260,7 +260,13 @@ Rectangle {
panel.receiveClicked() panel.receiveClicked()
} }
} }
Rectangle {
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: 16
color: "#505050"
height: 1
}
// ------------- TxKey tab --------------- // ------------- TxKey tab ---------------
MenuButton { MenuButton {
id: txkeyButton id: txkeyButton
@@ -275,12 +281,11 @@ Rectangle {
panel.txkeyClicked() panel.txkeyClicked()
} }
} }
Rectangle { Rectangle {
anchors.left: parent.left anchors.left: parent.left
anchors.right: parent.right anchors.right: parent.right
anchors.leftMargin: 16 anchors.leftMargin: 16
color: transferButton.checked || historyButton.checked ? "#1C1C1C" : "#505050" color: "#505050"
height: 1 height: 1
} }
@@ -299,6 +304,13 @@ Rectangle {
panel.historyClicked() panel.historyClicked()
} }
} }
Rectangle {
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: 16
color: "#505050"
height: 1
}
/* /*
Rectangle { Rectangle {
anchors.left: parent.left anchors.left: parent.left
@@ -368,6 +380,13 @@ Rectangle {
panel.signClicked() panel.signClicked()
} }
} }
Rectangle {
anchors.left: parent.left
anchors.right: parent.right
anchors.leftMargin: 16
color: "#505050"
height: 1
}
// ------------- Settings tab --------------- // ------------- Settings tab ---------------
MenuButton { MenuButton {
id: settingsButton id: settingsButton