https://pharo.fogbugz.com/f/cases/13302/
and is also backported to the dark theme for Pharo3 (in my repository)
Esteban
On 03 Jun 2014, at 16:20, Nicolai Hess <nicolaihess@web.de> wrote:
2014-06-03 20:18 GMT+02:00 phil@highoctane.be <phil@highoctane.be>:
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 notNiland: [ActiveHand keyboardFocus == selfand: [self rootMenu hasProperty: #hasUsedKeyboard]])ifTrue: [aCanvasframeAndFillRectangle: self innerBoundsfillColor: Color transparentborderWidth: self theme menuBorderWidthborderColor: 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