mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 19:05:46 -05:00
[welcomeq] use negatedText for better text on missing
This commit is contained in:
parent
3db12cc29e
commit
153d605bb6
2 changed files with 2 additions and 2 deletions
|
@ -79,7 +79,7 @@ Rectangle {
|
||||||
}
|
}
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
text: ( satisfied ? 'Met: ' : 'Missing: ' ) + name + " " + details
|
text: satisfied ? details : negatedText
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
font.pointSize: 11
|
font.pointSize: 11
|
||||||
}
|
}
|
||||||
|
|
|
@ -79,7 +79,7 @@ Rectangle {
|
||||||
}
|
}
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
text: ( mandatory ? 'Met: ' : 'Failed: ' ) + name + " " + details
|
text: mandatory ? details : negatedText
|
||||||
anchors.centerIn: parent
|
anchors.centerIn: parent
|
||||||
font.pointSize: 11
|
font.pointSize: 11
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue