diff options
Diffstat (limited to 'generic/ttk')
-rw-r--r-- | generic/ttk/ttkLabel.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/generic/ttk/ttkLabel.c b/generic/ttk/ttkLabel.c index 3f1d7c7..6a8c23f 100644 --- a/generic/ttk/ttkLabel.c +++ b/generic/ttk/ttkLabel.c @@ -1,4 +1,4 @@ -/* $Id: ttkLabel.c,v 1.13 2010/01/22 14:17:53 nijtmans Exp $ +/* $Id: ttkLabel.c,v 1.14 2011/01/14 23:43:10 wordtech Exp $ * * text, image, and label elements. * @@ -326,10 +326,16 @@ static void ImageDraw( * stipple the image. * @@@ Possibly: Don't do disabled-stippling at all; * @@@ it's ugly and out of fashion. + * Do not stipple at all under Aqua, just draw the image: it shows up + * as a white rectangle otherwise. */ + + if (state & TTK_STATE_DISABLED) { if (TtkSelectImage(image->imageSpec, 0ul) == image->tkimg) { + #ifndef MAC_OSX_TK StippleOver(image, tkwin, d, b.x,b.y); + #endif } } } |