Explorar el Código

fixed bug causing random number format exception

svn changeset:6275/svn branch:trunk
tags/6.7.0.beta1
Matti Tahvonen hace 15 años
padre
commit
90a16cc1c2
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      src/com/itmill/toolkit/terminal/gwt/client/Util.java

+ 1
- 1
src/com/itmill/toolkit/terminal/gwt/client/Util.java Ver fichero

@@ -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 {

Cargando…
Cancelar
Guardar