# HG changeset patch # User Claus Gittinger # Date 1153133767 -7200 # Node ID 481537d623d3d4dbc9287290ea7897350d33e440 # Parent 56352366d94abfcb3fbd885fdf01bf4520c826d7 helpspec diff -r 56352366d94a -r 481537d623d3 MenuEditor.st --- a/MenuEditor.st Fri Jul 07 13:45:23 2006 +0200 +++ b/MenuEditor.st Mon Jul 17 12:56:07 2006 +0200 @@ -397,7 +397,7 @@ 'Selector returning an image (sent to above or the application).' #keepLinkedMenu -'Keep the linked menu after activation (do not destroy; rebuild menu for every activation).' +'Keep the linked menu after activation (do not destroy; if off, menu is rebuild for every activation).' #sendToOriginator 'Send action-Message to widget (instead of application); only valid for PopUpMenus.' @@ -412,6 +412,8 @@ 'If on, the items action is performed on mouse-button press (default is: on button-release).' ) + + "Modified: / 16-07-2006 / 10:23:57 / cg" ! localFlyHelpSpecStrings @@ -3928,14 +3930,14 @@ !MenuEditor::ActionItem methodsFor:'aspects'! aspectAt:aKey put:aValue - "pass the argument to the delayed menu if existant + "pass the argument to the delayed menu if existent " aKey == #argument ifTrue:[ self hasDelayedMenu ifTrue:[ children first argument:aValue ]. menuItem argument:aValue. - ^ self + ^ self ]. aKey == #triggerOnDown ifTrue:[ @@ -3947,6 +3949,8 @@ ^ self. ]. super aspectAt:aKey put:aValue. + + "Modified: / 16-07-2006 / 10:18:51 / cg" ! toAspects:aspects