Merge pull request #1407 from demmm/master

[welcomeq] use negatedText for better text on missing
main
Adriaan de Groot 5 years ago committed by GitHub
commit cbe5e37112
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save