From f2749fa1f0eaee3c30e83d68482b99066d4fc4dc Mon Sep 17 00:00:00 2001 From: selsta Date: Thu, 10 Jan 2019 06:58:43 +0100 Subject: repo: cleanup unused pages and components - Dashboard - TableHeader - SearchInput - DashboardTable --- LeftPanel.qml | 32 +------------------------------- 1 file changed, 1 insertion(+), 31 deletions(-) (limited to 'LeftPanel.qml') diff --git a/LeftPanel.qml b/LeftPanel.qml index 16b1a8f9..8bfa2f0e 100644 --- a/LeftPanel.qml +++ b/LeftPanel.qml @@ -50,7 +50,6 @@ Rectangle { property string copyValue: "" Clipboard { id: clipboard } - signal dashboardClicked() signal historyClicked() signal transferClicked() signal receiveClicked() @@ -65,8 +64,7 @@ Rectangle { function selectItem(pos) { menuColumn.previousButton.checked = false - if(pos === "Dashboard") menuColumn.previousButton = dashboardButton - else if(pos === "History") menuColumn.previousButton = historyButton + if(pos === "History") menuColumn.previousButton = historyButton else if(pos === "Transfer") menuColumn.previousButton = transferButton else if(pos === "Receive") menuColumn.previousButton = receiveButton else if(pos === "Merchant") menuColumn.previousButton = merchantButton @@ -338,34 +336,6 @@ Rectangle { clip: true property var previousButton: transferButton - // ------------- Dashboard tab --------------- - - /* - MenuButton { - id: dashboardButton - anchors.left: parent.left - anchors.right: parent.right - text: qsTr("Dashboard") + translationManager.emptyString - symbol: qsTr("D") + translationManager.emptyString - dotColor: "#FFE00A" - checked: true - onClicked: { - parent.previousButton.checked = false - parent.previousButton = dashboardButton - panel.dashboardClicked() - } - } - - - Rectangle { - anchors.left: parent.left - anchors.right: parent.right - anchors.leftMargin: 16 - color: dashboardButton.checked || transferButton.checked ? "#1C1C1C" : "#313131" - height: 1 - } - */ - // top border Rectangle { anchors.left: parent.left -- cgit v1.2.3