From xemacs-m  Mon Mar 10 08:56:19 1997
Received: from frege.math.ethz.ch (root@frege-d-math-north-g-west.math.ethz.ch [129.132.145.3])
	by xemacs.org (8.8.5/8.8.5) with SMTP id IAA23072
	for <xemacs-beta@xemacs.org>; Mon, 10 Mar 1997 08:56:13 -0600 (CST)
Received: from fresnel.math.ethz.ch (vroonhof@fresnel [129.132.145.6]) by frege.math.ethz.ch (8.6.12/Main-STAT-mailer) with ESMTP id PAA27346; Mon, 10 Mar 1997 15:52:34 +0100
Received: (vroonhof@localhost) by fresnel.math.ethz.ch (8.6.9/D-MATH-client) id PAA12694; Mon, 10 Mar 1997 15:50:24 +0100
Sender: vroonhof@math.ethz.ch
To: Raymond Toy <toy@rtp.ericsson.se>
Cc: Kyle Jones <kyle_jones@wonderworks.com>,
        XEmacs BETA!!! Mailing List <xemacs-beta@xemacs.org>
Subject: Re: 20.1-b6 ok on Solaris 2.5.1 (mostly)
References: <6597.857944604@rtp.ericsson.se>  <QQcgfg18049.199703100400@crystal.WonderWorks.COM> <7684.858002675@rtp.ericsson.se>
Mime-Version: 1.0 (generated by tm-edit 7.105)
Content-Type: text/plain; charset=US-ASCII
From: Jan Vroonhof <vroonhof@math.ethz.ch>
Date: 10 Mar 1997 15:50:23 +0100
In-Reply-To: Raymond Toy's message of Mon, 10 Mar 1997 09:04:35 -0500
Message-ID: <by3eu3hkcw.fsf@math.ethz.ch>
Lines: 33
X-Mailer: Gnus v5.4.25/XEmacs 19.15

Raymond Toy <toy@rtp.ericsson.se> writes:

>     >> Everything seems to be working fine after 15 minutes of usage,
>     >> except for one thing: The shadows on the toolbar icons are all
>     >> black, like so:
> 
>     Kyle> Try this patch and see if it helps.
> 
> [patch deleted]
> 
> Thanks for the suggestion and patch, but this didn't make any
> difference.  I still get solid black shadows on the toolbar. :-(

Kyle's patch just replace's black by color #0000000 which on most
systems is probably the same.

Try this patch, which just reverses the change introduced with b98

--- EmacsFrame.c	Sun Mar  9 03:38:30 1997
+++ ../../xemacs-19.15-b96/src/EmacsFrame.c	Sun Feb  2 06:06:58 1997
@@ -103,10 +103,10 @@
   {XtNrightToolBarWidth, XtCRightToolBarWidth, XtRInt, sizeof (int),
      offset (right_toolbar_width), XtRImmediate, (XtPointer)-1},
   {XtNtopToolBarShadowColor, XtCTopToolBarShadowColor, XtRPixel, sizeof(Pixel),
-     offset(top_toolbar_shadow_pixel), XtRString, (String) "black"},
+     offset(top_toolbar_shadow_pixel), XtRString, (String) "Gray90"},
   {XtNbottomToolBarShadowColor, XtCBottomToolBarShadowColor, XtRPixel,
      sizeof(Pixel), offset(bottom_toolbar_shadow_pixel), XtRString,
-     (String) "black"},
+     (String) "Gray40"},
   {XtNbackgroundToolBarColor, XtCBackgroundToolBarColor, XtRPixel,
      sizeof(Pixel), offset(background_toolbar_pixel), XtRString,
      (String) "Gray75"},

