зеркало из https://github.com/microsoft/ace.git
Android fix for programmatically setting a GridLength to "*"
This commit is contained in:
Родитель
a62f00b683
Коммит
b4df5899f7
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче