ReferenceView>>contextMenu useless ?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

ReferenceView>>contextMenu useless ?

Chris Uppal-3
Is the #contextMenu aspect of ReferenceView intended to do anything ?   As far
as I can see it has no affect if the referee has its own (default) context menu
which I wish to override.

    -- chris


Reply | Threaded
Open this post in threaded view
|

Re: ReferenceView>>contextMenu useless ?

hboon@motionobj.com
Looks like it should be overridden similarly to
ReferenceView>>backcolor:. ie.:

=========
contextMenu: aMenuOrNil
    super contextMenu: aMenuOrNil.
    self referee contextMenu: aMenuOrNil
=========

--
Hwee Boon


Reply | Threaded
Open this post in threaded view
|

Re: ReferenceView>>contextMenu useless ?

Chris Uppal-3
Hwee Boon,

> Looks like it should be overridden similarly to
> ReferenceView>>backcolor:. [...]

That's what I'd have expected too, but I don't know whether that's the intended
behaviour.

    -- chris