[welcomeq] use negatedText for better text on missing
This commit is contained in:
parent
3db12cc29e
commit
153d605bb6
@ -79,7 +79,7 @@ Rectangle {
|
||||
}
|
||||
|
||||
Text {
|
||||
text: ( satisfied ? 'Met: ' : 'Missing: ' ) + name + " " + details
|
||||
text: satisfied ? details : negatedText
|
||||
anchors.centerIn: parent
|
||||
font.pointSize: 11
|
||||
}
|
||||
|
@ -79,7 +79,7 @@ Rectangle {
|
||||
}
|
||||
|
||||
Text {
|
||||
text: ( mandatory ? 'Met: ' : 'Failed: ' ) + name + " " + details
|
||||
text: mandatory ? details : negatedText
|
||||
anchors.centerIn: parent
|
||||
font.pointSize: 11
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user