fix: fix wallet missing file message and color warning

This commit is contained in:
Jonathan Rainville 2020-06-01 12:58:46 -04:00 committed by Iuri Matias
parent d4341e1f17
commit 9e25ba1d95
3 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,6 @@ import QtQuick.Layouts 1.3
import Qt.labs.platform 1.1
import "../../../../shared"
import "../../../../imports"
import "../components"
Rectangle {
id: addAccount

View File

@ -6,7 +6,7 @@ import Qt.labs.platform 1.1
import QtGraphicalEffects 1.0
import "../../../imports"
import "../../../shared"
import "./components"
import "./Components"
Item {
property int selectedWallet: 0
@ -89,7 +89,7 @@ Item {
ColorOverlay {
anchors.fill: walletIcon
source: walletIcon
color: selected ? undefined : "#7CDA00" // change image color
color: selected ? Theme.transparent : "#7CDA00" // change image color
}
Text {
id: walletName

View File

@ -79,6 +79,7 @@ DISTFILES += \
app/AppLayouts/Profile/ProfileLayout.qml \
app/AppLayouts/Wallet/AssetsTab.qml \
app/AppLayouts/Wallet/CollectiblesTab.qml \
app/AppLayouts/Wallet/Components/AddAccount.qml \
app/AppLayouts/Wallet/Components/SendModalContent.qml \
app/AppLayouts/Wallet/Components/qmldir \
app/AppLayouts/Wallet/HistoryTab.qml \