diff options
| author | Jaquee <jaquee.monero@gmail.com> | 2016-11-23 20:00:19 +0100 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2016-11-23 20:01:27 +0100 |
| commit | 45f28481b4c537f8b4492b50de9f6ae8113a19f6 (patch) | |
| tree | e1c9394a8ee5e40ba50a5340fe6d84f547b180e9 | |
| parent | c83336cc4714215725cba957d8ea164a57c33987 (diff) | |
| download | monzero-gui-45f28481b4c537f8b4492b50de9f6ae8113a19f6.tar.gz monzero-gui-45f28481b4c537f8b4492b50de9f6ae8113a19f6.tar.xz monzero-gui-45f28481b4c537f8b4492b50de9f6ae8113a19f6.zip | |
add missing tab separators
| -rw-r--r-- | LeftPanel.qml | 27 |
1 files changed, 23 insertions, 4 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml index d1a4e8a1..89665f59 100644 --- a/LeftPanel.qml +++ b/LeftPanel.qml @@ -242,7 +242,7 @@ Rectangle { anchors.left: parent.left anchors.right: parent.right anchors.leftMargin: 16 - color: transferButton.checked || receiveButton.checked ? "#1C1C1C" : "#505050" + color: "#505050" height: 1 } @@ -260,7 +260,13 @@ Rectangle { panel.receiveClicked() } } - + Rectangle { + anchors.left: parent.left + anchors.right: parent.right + anchors.leftMargin: 16 + color: "#505050" + height: 1 + } // ------------- TxKey tab --------------- MenuButton { id: txkeyButton @@ -275,12 +281,11 @@ Rectangle { panel.txkeyClicked() } } - Rectangle { anchors.left: parent.left anchors.right: parent.right anchors.leftMargin: 16 - color: transferButton.checked || historyButton.checked ? "#1C1C1C" : "#505050" + color: "#505050" height: 1 } @@ -299,6 +304,13 @@ Rectangle { panel.historyClicked() } } + Rectangle { + anchors.left: parent.left + anchors.right: parent.right + anchors.leftMargin: 16 + color: "#505050" + height: 1 + } /* Rectangle { anchors.left: parent.left @@ -368,6 +380,13 @@ Rectangle { panel.signClicked() } } + Rectangle { + anchors.left: parent.left + anchors.right: parent.right + anchors.leftMargin: 16 + color: "#505050" + height: 1 + } // ------------- Settings tab --------------- MenuButton { id: settingsButton |
