When I use the "grayed-color" property for screen menus, the screenbottombar is also covered by the grayed-color. However, I think this is the wrong behaviour. PopupBox widgets seem to display okay because they have their own dedicated "bottombar" Widget, but MenuPopups seem to just change the Screen bottombar (which is covered by the grayed-color overlay). If this doesn't make much sense, I can provide an image.
A simple workaround for this is to not display the grayed-color property on MenuPopups by adding a condition to the Desktop.java file such as:
if (grayedColor != null && !KuixConstants.MENU_POPUP_WIDGET_TAG.equals(popupContainer.getLastChild().getTag())) {
...
But this isn't a nice solution.

