Fix not all warning text displaying

This commit is contained in:
David Rowe 2017-03-16 17:56:13 +13:00
parent 7efda8bead
commit 3c1506237a
2 changed files with 3 additions and 1 deletions

View file

@ -259,6 +259,7 @@ ModalWindow {
visible: Boolean(root.warning);
text: hifi.glyphs.alert;
size: hifi.dimensions.controlLineHeight;
width: 20 // Line up with checkbox.
}
}

View file

@ -277,7 +277,7 @@ TabletModalWindow {
text: root.warning;
wrapMode: Text.WordWrap;
font.italic: true;
maximumLineCount: 2;
maximumLineCount: 3;
}
HiFiGlyphs {
@ -285,6 +285,7 @@ TabletModalWindow {
visible: Boolean(root.warning);
text: hifi.glyphs.alert;
size: hifi.dimensions.controlLineHeight;
width: 20 // Line up with checkbox.
}
}