[BUG][FIX] ParagraphEditor>>getPluggableYellowButtonMenu:

Robert Hirschfeld hirschfeld at acm.org
Sun Apr 30 02:18:28 UTC 2000


Hi,

In the current version of ParagraphEditor>>getPluggableYellowButtonMenu:
(Squeak2.8alpha, latest update: #2042) the custom yellow button menu of
PluggableTextView is unreachable.

-Robert


"Change Set:		ParagraphEditor>>getPluggableYellowButtonMenu:
Date:			28 April 2000
Author:			Robert Hirschfeld

Fixes ParagraphEditor>>getPluggableYellowButtonMenu: to make
the yellow button menu, if provided by the view, available."!

___________________________________________
                          Robert Hirschfeld
                  mailto:hirschfeld at acm.org
-------------- next part --------------
'From Squeak2.8alpha of 6 April 2000 [latest update: #2042] on 28 April 2000 at 1:32:14 am'!
"Change Set:		ParagraphEditor>>getPluggableYellowButtonMenu:
Date:			28 April 2000
Author:			Robert Hirschfeld

Fixes ParagraphEditor>>getPluggableYellowButtonMenu: to make
the yellow button menu, if provided by the view, available."!

!ParagraphEditor methodsFor: 'private' stamp: 'rhi 4/27/2000 09:03'!
getPluggableYellowButtonMenu: shiftKeyState

	| customMenu |
	^(customMenu := view getMenu: shiftKeyState) notNil
		ifTrue: [customMenu]
		ifFalse: [
			shiftKeyState
				ifTrue: [self class shiftedYellowButtonMenu]
				ifFalse: [self class yellowButtonMenu]]! !



More information about the Squeak-dev mailing list