vkessler@ncratl.AtlantaGA.NCR.COM (Vance Kessler) (04/19/91)
I found a problem with the debugger in version 1.2 of Smalltalk/V PM. The hop/skip/jump buttons did not work at all. However, their corresponding menu items did work. I discovered that this was an error in the way the Button class was defined, THEY FORGOT TO OVERRIDE A METHOD! So, I have listed below the fix I used. ! Button methods ! buttonClicked "Private - The user clicked the receiver. Let the owner process the event." ((style bitAnd: 7) = BsPushbutton) ifTrue: [self event: #clicked]! !