diff options
author | Leif Åstrand <leif@vaadin.com> | 2013-04-05 16:33:24 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2013-04-05 16:33:51 +0300 |
commit | afd707b6a019a7a6bc4ab91657bd07411642bfa4 (patch) | |
tree | 11b056cf4ddf102831a633c94562ec632445ef57 /client/src | |
parent | 6e59118a1bb7125391b9d4396c9db2fe770578b8 (diff) | |
download | vaadin-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.java | 2 |
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("%")) { |