summaryrefslogtreecommitdiffstats
path: root/client/src
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2013-04-05 16:33:24 +0300
committerLeif Åstrand <leif@vaadin.com>2013-04-05 16:33:51 +0300
commitafd707b6a019a7a6bc4ab91657bd07411642bfa4 (patch)
tree11b056cf4ddf102831a633c94562ec632445ef57 /client/src
parent6e59118a1bb7125391b9d4396c9db2fe770578b8 (diff)
downloadvaadin-framework-afd707b6a019a7a6bc4ab91657bd07411642bfa4.tar.gz
vaadin-framework-afd707b6a019a7a6bc4ab91657bd07411642bfa4.zip
Fix Profiler call that was accidentally left out when merging #3400
Change-Id: I5ef3476df3cc0bd41c813fab2cdfa0dc9295d2cb
Diffstat (limited to 'client/src')
-rw-r--r--client/src/com/vaadin/client/ui/AbstractComponentConnector.java2
1 files changed, 2 insertions, 0 deletions
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("%")) {