I have the following initialization method on my subclass of IconicButton:
initialize
super initialize.
self
extent: 50@50;
color: Color transparent;
borderWidth: 2;
borderColor: Color transparent;
hResizing: #shrinkWrap;
vResizing: #shrinkWrap;
borderStyle: SimpleBorder new;
cornerStyle: #rounded;
borderWidth: 2;
actWhen: #startDrag
Oddly, however, when I create and inspect my button, I see that actWhen is set to #buttonUp. That seems weird. Am I doing something wrong, or do I have a bug?
--
Ron