From 5fe42510b0940f307c54d788ff74c476eba5f677 Mon Sep 17 00:00:00 2001 From: Matti Tahvonen Date: Mon, 28 Jun 2010 14:27:28 +0000 Subject: [PATCH] VView now properly registered to applicationconnection, fixes regression with window resize listeners (original feature ticket #2518) svn changeset:13951/svn branch:6.4 --- src/com/vaadin/terminal/gwt/client/ApplicationConnection.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java b/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java index 5f71183c25..be11dc3610 100755 --- a/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java +++ b/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java @@ -848,6 +848,10 @@ public class ApplicationConnection { + ", but there is no such paintable (" + uidl.getId() + ") rendered."); } else { + if (!idToPaintableDetail.containsKey(uidl + .getId())) { + registerPaintable(uidl.getId(), view); + } view.updateFromUIDL(uidl, ApplicationConnection.this); } -- 2.39.5