Fixed onboarding view backgroud image issue on dark mode. Fixes #1965
This commit is contained in:
parent
844a61798a
commit
f3226852c3
|
@ -14,7 +14,7 @@ Item {
|
||||||
id: walkieTalkieImage
|
id: walkieTalkieImage
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
source: "../../../../onboarding/img/chat@2x.jpg"
|
source: "../../../../onboarding/img/chat@2x.png"
|
||||||
}
|
}
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 1.3 MiB |
|
@ -30,7 +30,7 @@ RowLayout {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
|
||||||
Slide {
|
Slide {
|
||||||
image: Universal.theme === Universal.Dark ? "img/chat-dark@2x.jpg" : "img/chat@2x.jpg"
|
image: "img/chat@2x.png"
|
||||||
//% "Truly private communication"
|
//% "Truly private communication"
|
||||||
title: qsTrId("intro-title1")
|
title: qsTrId("intro-title1")
|
||||||
//% "Chat over a peer-to-peer, encrypted network\n where messages can't be censored or hacked"
|
//% "Chat over a peer-to-peer, encrypted network\n where messages can't be censored or hacked"
|
||||||
|
@ -45,7 +45,7 @@ RowLayout {
|
||||||
description: qsTrId("send-and-receive-digital-assets-anywhere-in-the-nworld--no-bank-account-required")
|
description: qsTrId("send-and-receive-digital-assets-anywhere-in-the-nworld--no-bank-account-required")
|
||||||
}
|
}
|
||||||
Slide {
|
Slide {
|
||||||
image: Universal.theme === Universal.Dark ? "img/browser-dark@2x.jpg" : "img/browser@2x.jpg"
|
image: "img/browser@2x.png"
|
||||||
//% "Decentralized apps"
|
//% "Decentralized apps"
|
||||||
title: qsTrId("intro-title3")
|
title: qsTrId("intro-title3")
|
||||||
//% "Explore games, exchanges and social networks\nwhere you alone own your data"
|
//% "Explore games, exchanges and social networks\nwhere you alone own your data"
|
||||||
|
|
|
@ -5,7 +5,7 @@ import "../shared"
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: slide
|
id: slide
|
||||||
property string image: "img/chat@2x.jpg"
|
property string image: "img/chat@2x.png"
|
||||||
property string title: "Truly private communication"
|
property string title: "Truly private communication"
|
||||||
property string description: "Chat over a peer-to-peer, encrypted network\n where messages can't be censored or hacked"
|
property string description: "Chat over a peer-to-peer, encrypted network\n where messages can't be censored or hacked"
|
||||||
property bool isFirst: false
|
property bool isFirst: false
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 281 KiB |
Binary file not shown.
After Width: | Height: | Size: 544 KiB |
Binary file not shown.
After Width: | Height: | Size: 350 KiB |
Binary file not shown.
After Width: | Height: | Size: 686 KiB |
Loading…
Reference in New Issue