2014-06-03 20:18 GMT+02:00 [email protected] <[email protected]>: > 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 >
This happens for the non dark Pharo3Theme too. And in the latest pharo40, only menuKeyboardFocusColor is missing. The menuBorderWidth method is defined in UITheme. nicolai
