From: Jouni Koivuviita Date: Tue, 6 Oct 2009 12:54:48 +0000 (+0000) Subject: Fixes #3481: 24bit PNG icons don't work in Combobox dropdown menu X-Git-Tag: 6.7.0.beta1~2432 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=7158b92cd4ff9ffa983920b697b1446051f805b4;p=vaadin-framework.git Fixes #3481: 24bit PNG icons don't work in Combobox dropdown menu svn changeset:9112/svn branch:6.2 --- diff --git a/src/com/vaadin/terminal/gwt/client/ui/VFilterSelect.java b/src/com/vaadin/terminal/gwt/client/ui/VFilterSelect.java index 5e4383a70f..779b36cd5a 100644 --- a/src/com/vaadin/terminal/gwt/client/ui/VFilterSelect.java +++ b/src/com/vaadin/terminal/gwt/client/ui/VFilterSelect.java @@ -47,7 +47,7 @@ import com.vaadin.terminal.gwt.client.Util; import com.vaadin.terminal.gwt.client.VTooltip; /** - * + * * TODO needs major refactoring (to be extensible etc) */ public class VFilterSelect extends Composite implements Paintable, Field, @@ -286,7 +286,7 @@ public class VFilterSelect extends Composite implements Paintable, Field, /* * (non-Javadoc) - * + * * @see * com.google.gwt.user.client.ui.PopupPanel$PositionCallback#setPosition * (int, int) @@ -432,6 +432,7 @@ public class VFilterSelect extends Composite implements Paintable, Field, .sinkEvents((Element) child.cast(), (DOM.getEventsSunk((Element) child .cast()) | Event.ONLOAD)); + client.addPngFix((Element) child.cast()); } child = child.getNextSiblingElement(); }