When showing the world menu, there is an issue with the Dark Themes. MenuMorph>>drawOn: aCanvas "Draw the menu. Add keyboard-focus feedback if appropriate"
super drawOn: aCanvas. (ActiveHand notNil and: [ActiveHand keyboardFocus == self and: [self rootMenu hasProperty: #hasUsedKeyboard]]) ifTrue: [ aCanvas frameAndFillRectangle: self innerBounds fillColor: Color transparent borderWidth: self theme menuBorderWidth borderColor: self theme menuKeyboardFocusColor ]. looks for menuBorderWidth and menuKeyboardFocusColor. When hitting a key that doesn't exists in the menu, I had the redcross. Defining the methods solved it. Thanks for fixing the themes. Phil
