Procházet zdrojové kódy

fixed bug causing random number format exception

svn changeset:6275/svn branch:trunk
tags/6.7.0.beta1
Matti Tahvonen před 15 roky
rodič
revize
90a16cc1c2

+ 1
- 1
src/com/itmill/toolkit/terminal/gwt/client/Util.java Zobrazit soubor

@@ -368,7 +368,7 @@ public class Util {
return paddingBorderGuess;
} else if (height.endsWith("px")) {
int pixelHeight = Integer.parseInt(height.substring(0, height
.length() - 3));
.length() - 2));
return setHeightExcludingPaddingAndBorder(widget.getElement(),
pixelHeight, paddingBorderGuess, false);
} else {

Načítá se…
Zrušit
Uložit