disabling pulsing default button
disabling pulsing default button
- Subject: disabling pulsing default button
- From: Chris Meyer <email@hidden>
- Date: Wed, 11 Jul 2001 11:27:15 -0700
The default button pulsing is done using a thread and if the button
is drawing on top of something opaque it will cause drawRect: on the
opaque item underneath to be invoked at arbitrary threaded times
(when the button updates).
This causes a problem for me as I have a custom opaque item
underneath the pulsing default button.
Is there any way to disable the pulsating thread for the default button?
Doesn't this go against the rules of thread safety in Cocoa (i.e.
drawing is not typically thread safe)?