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 Qt.labs.platform 1.1
|
||||||
import "../../../../shared"
|
import "../../../../shared"
|
||||||
import "../../../../imports"
|
import "../../../../imports"
|
||||||
import "../components"
|
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
id: addAccount
|
id: addAccount
|
||||||
|
|
|
@ -6,7 +6,7 @@ import Qt.labs.platform 1.1
|
||||||
import QtGraphicalEffects 1.0
|
import QtGraphicalEffects 1.0
|
||||||
import "../../../imports"
|
import "../../../imports"
|
||||||
import "../../../shared"
|
import "../../../shared"
|
||||||
import "./components"
|
import "./Components"
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
property int selectedWallet: 0
|
property int selectedWallet: 0
|
||||||
|
@ -89,7 +89,7 @@ Item {
|
||||||
ColorOverlay {
|
ColorOverlay {
|
||||||
anchors.fill: walletIcon
|
anchors.fill: walletIcon
|
||||||
source: walletIcon
|
source: walletIcon
|
||||||
color: selected ? undefined : "#7CDA00" // change image color
|
color: selected ? Theme.transparent : "#7CDA00" // change image color
|
||||||
}
|
}
|
||||||
Text {
|
Text {
|
||||||
id: walletName
|
id: walletName
|
||||||
|
|
|
@ -79,6 +79,7 @@ DISTFILES += \
|
||||||
app/AppLayouts/Profile/ProfileLayout.qml \
|
app/AppLayouts/Profile/ProfileLayout.qml \
|
||||||
app/AppLayouts/Wallet/AssetsTab.qml \
|
app/AppLayouts/Wallet/AssetsTab.qml \
|
||||||
app/AppLayouts/Wallet/CollectiblesTab.qml \
|
app/AppLayouts/Wallet/CollectiblesTab.qml \
|
||||||
|
app/AppLayouts/Wallet/Components/AddAccount.qml \
|
||||||
app/AppLayouts/Wallet/Components/SendModalContent.qml \
|
app/AppLayouts/Wallet/Components/SendModalContent.qml \
|
||||||
app/AppLayouts/Wallet/Components/qmldir \
|
app/AppLayouts/Wallet/Components/qmldir \
|
||||||
app/AppLayouts/Wallet/HistoryTab.qml \
|
app/AppLayouts/Wallet/HistoryTab.qml \
|
||||||
|
|
Loading…
Reference in New Issue