fix: fix wallet missing file message and color warning
This commit is contained in:
parent
d4341e1f17
commit
9e25ba1d95
|
@ -5,7 +5,6 @@ import QtQuick.Layouts 1.3
|
|||
import Qt.labs.platform 1.1
|
||||
import "../../../../shared"
|
||||
import "../../../../imports"
|
||||
import "../components"
|
||||
|
||||
Rectangle {
|
||||
id: addAccount
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 \
|
||||
|
|
Loading…
Reference in New Issue