fother
1 Jul 2009, 10:11 AM
this problem appears in rc2 and with images PNG; with GIF its ok
in rc1 this tested case work fine
tested in hosted mode win vista
look the attachment to see the problem
code example
public void onModuleLoad() {
Button button1 = new Button("button disable png", Examples.ICONS.connect());
button1.disable();
Button button2 = new Button("button enable png", Examples.ICONS.connect());
Button button3 = new Button("button disable gif", Examples.ICONS.add16());
button3.disable();
Button button4 = new Button("button enable gif", Examples.ICONS.add16());
ToolBar toolBar = new ToolBar();
toolBar.add(button1);
toolBar.add(button2);
toolBar.add(button3);
toolBar.add(button4);
ContentPanel panel = new ContentPanel();
panel.setSize(600, 200);
panel.setTopComponent(toolBar);
RootPanel.get().add(panel);
}
in rc1 this tested case work fine
tested in hosted mode win vista
look the attachment to see the problem
code example
public void onModuleLoad() {
Button button1 = new Button("button disable png", Examples.ICONS.connect());
button1.disable();
Button button2 = new Button("button enable png", Examples.ICONS.connect());
Button button3 = new Button("button disable gif", Examples.ICONS.add16());
button3.disable();
Button button4 = new Button("button enable gif", Examples.ICONS.add16());
ToolBar toolBar = new ToolBar();
toolBar.add(button1);
toolBar.add(button2);
toolBar.add(button3);
toolBar.add(button4);
ContentPanel panel = new ContentPanel();
panel.setSize(600, 200);
panel.setTopComponent(toolBar);
RootPanel.get().add(panel);
}