From afd707b6a019a7a6bc4ab91657bd07411642bfa4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Leif=20=C3=85strand?= Date: Fri, 5 Apr 2013 16:33:24 +0300 Subject: [PATCH] Fix Profiler call that was accidentally left out when merging #3400 Change-Id: I5ef3476df3cc0bd41c813fab2cdfa0dc9295d2cb --- client/src/com/vaadin/client/ui/AbstractComponentConnector.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/src/com/vaadin/client/ui/AbstractComponentConnector.java b/client/src/com/vaadin/client/ui/AbstractComponentConnector.java index e7f7379994..dcb159985c 100644 --- a/client/src/com/vaadin/client/ui/AbstractComponentConnector.java +++ b/client/src/com/vaadin/client/ui/AbstractComponentConnector.java @@ -213,6 +213,8 @@ public abstract class AbstractComponentConnector extends AbstractConnector } protected void updateComponentSize(String newWidth, String newHeight) { + Profiler.enter("AbstractComponentConnector.updateComponentSize"); + // Parent should be updated if either dimension changed between relative // and non-relative if (newWidth.endsWith("%") != lastKnownWidth.endsWith("%")) { -- 2.39.5