add missing tab separators

This commit is contained in:
Jaquee 2016-11-23 20:00:19 +01:00
parent c83336cc47
commit 45f28481b4
No known key found for this signature in database
GPG Key ID: 384E52B09F45DC39

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