From 29da300289c4ffb2b9758648859f06a8151cbb3a Mon Sep 17 00:00:00 2001 From: wordtech Date: Fri, 14 Jan 2011 23:43:10 +0000 Subject: Remove stippling from disabled images under Aqua; renders as white box currently. --- generic/ttk/ttkLabel.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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 } } } -- cgit v0.12