From c94d36da0ad69393715f83b395153aa5074d9089 Mon Sep 17 00:00:00 2001 From: Matti Tahvonen Date: Thu, 24 Jan 2008 14:48:40 +0000 Subject: [PATCH] changed setting repaintRequestListenersNotified flag to same place as in AbstractComponent (only when listener really found) svn changeset:3654/svn branch:trunk --- src/com/itmill/toolkit/ui/CustomComponent.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/com/itmill/toolkit/ui/CustomComponent.java b/src/com/itmill/toolkit/ui/CustomComponent.java index 453c0fcfb1..2deec9aedd 100644 --- a/src/com/itmill/toolkit/ui/CustomComponent.java +++ b/src/com/itmill/toolkit/ui/CustomComponent.java @@ -293,12 +293,11 @@ public class CustomComponent implements Component { ((RepaintRequestListener) listeners[i]) .repaintRequested(event); alreadyNotified.add(listeners[i]); + repaintRequestListenersNotified = true; } } } - repaintRequestListenersNotified = true; - // Notify the parent final Component parent = getParent(); if (parent != null) { -- 2.39.5