From e2086217131c7e2c3c9df87fb25da9603dd99091 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Fri, 14 Dec 2012 10:42:36 +0200 Subject: Send fraction pixel values to the client (#10531) Fixed RichTextArea to deal with fraction pixel values Change-Id: I02fa6fd2c66e87b01f642a9051641a0cc758f0f6 --- server/src/com/vaadin/ui/AbstractComponent.java | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) (limited to 'server/src/com/vaadin/ui') diff --git a/server/src/com/vaadin/ui/AbstractComponent.java b/server/src/com/vaadin/ui/AbstractComponent.java index 63cf19283f..49c3d75385 100644 --- a/server/src/com/vaadin/ui/AbstractComponent.java +++ b/server/src/com/vaadin/ui/AbstractComponent.java @@ -593,11 +593,7 @@ public abstract class AbstractComponent extends AbstractClientConnector * @return CSS height */ private String getCSSHeight() { - if (getHeightUnits() == Unit.PIXELS) { - return ((int) getHeight()) + getHeightUnits().getSymbol(); - } else { - return getHeight() + getHeightUnits().getSymbol(); - } + return getHeight() + getHeightUnits().getSymbol(); } /** @@ -606,11 +602,7 @@ public abstract class AbstractComponent extends AbstractClientConnector * @return CSS width */ private String getCSSWidth() { - if (getWidthUnits() == Unit.PIXELS) { - return ((int) getWidth()) + getWidthUnits().getSymbol(); - } else { - return getWidth() + getWidthUnits().getSymbol(); - } + return getWidth() + getWidthUnits().getSymbol(); } /** -- cgit v1.2.3