Hello,
There is another problem with Firefox 18.
Context menu with showShadow enabled shows on top of a screen, not on widget or cursor.
Tested on latest nightly and Firefox 18.0.1.
Test case:
Best regards
Mariusz Goch
There is another problem with Firefox 18.
Context menu with showShadow enabled shows on top of a screen, not on widget or cursor.
Tested on latest nightly and Firefox 18.0.1.
Test case:
Code:
VLayout vLayout = new VLayout(5);
vLayout.setStyleName("defaultBorder");
vLayout.setWidth100();
vLayout.setHeight100();
Menu menu = new Menu();
[b]menu.setShowShadow(true);[/b]
menu.addItem(new MenuItem("test"));
vLayout.setContextMenu(menu);
Mariusz Goch