Hi
I added a simple transcript into the following method.
icon
"Answer the receiver's icon. Handle legacy case
of wording-based mechanism."
|state|
Transcript show: 'icon'; cr.
^^^^^^^^^^^^^^^^^^^^^^
self getStateSelector ifNil: [^super icon].
state := (MessageSend receiver: self target selector: self
getStateSelector)
valueWithEnoughArguments: self arguments .
(state = true or: [state isString and: [(state beginsWith: '<yes>') or:
[state beginsWith: '<on>']]])
ifTrue: [^self onIcon].
(state = false or: [state isString and: [(state beginsWith: '<no>') or:
[state beginsWith: '<off>']]])
ifTrue: [^self offIcon].
^super icon
Then I brought up the monticello menu which has 4 toggleMenus and I got a lot
and a lot and a lot
of processing in the transcript
It looks to me that there is a wrong logic in the system
Stef