# HG changeset patch # User ca # Date 1035647612 -7200 # Node ID 116bf6f0ff6283c19c6f8b93a0986c6901b9d37d # Parent 1dd4cd7ea43bc547bae29d8a1071568e8ac1a3a2 can now specify if menu action is to be performed by originating widget (instead of application) diff -r 1dd4cd7ea43b -r 116bf6f0ff62 UIPainterView.st --- a/UIPainterView.st Sat Oct 26 17:46:13 2002 +0200 +++ b/UIPainterView.st Sat Oct 26 17:53:32 2002 +0200 @@ -1520,13 +1520,14 @@ showMiddleButtonMenu "show the middle button menu; this returns nil " + + |m| + self enabled ifTrue:[ - (MenuPanel fromSpec:(UIPainter menuEdit) receiver:self superView application) startUp + m := MenuPanel fromSpec:(UIPainter menuEdit) receiver:self superView application. + self startUpMenu:m ]. ^ nil - - - ! ! !UIPainterView methodsFor:'private handles'!