Android fix for programmatically setting a GridLength to "*"

This commit is contained in:
Adam Nathan 2016-02-14 00:23:41 -08:00
Родитель a62f00b683
Коммит b4df5899f7
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -20,6 +20,10 @@ class GridLengthConverter {
else if (text.endsWith("*")) {
gl.type = GridUnitType.Star;
text = text.substring(0, text.length() - 1);
if (text.length() == 0) {
// Treat * as 1*, which is needed for the number parsing below
text = "1";
}
}
else {
gl.type = GridUnitType.Pixel;