From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Juri Linkov Newsgroups: gmane.emacs.devel Subject: Re: widget-inactive face unusable Date: Mon, 04 Jul 2005 03:27:57 +0300 Organization: JURTA Message-ID: <87oe9jnslf.fsf@jurta.org> References: <42C7CA15.3080208@student.lu.se> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1120451336 21038 80.91.229.2 (4 Jul 2005 04:28:56 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 4 Jul 2005 04:28:56 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jul 04 06:28:47 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DpIZV-0007Mq-83 for ged-emacs-devel@m.gmane.org; Mon, 04 Jul 2005 06:28:41 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DpIah-0005RO-0Y for ged-emacs-devel@m.gmane.org; Mon, 04 Jul 2005 00:29:55 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DpIZM-0004xM-Ji for emacs-devel@gnu.org; Mon, 04 Jul 2005 00:28:33 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DpIZG-0004uE-QU for emacs-devel@gnu.org; Mon, 04 Jul 2005 00:28:29 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DpIZG-0004ra-Gb for emacs-devel@gnu.org; Mon, 04 Jul 2005 00:28:26 -0400 Original-Received: from [194.126.101.116] (helo=HOT-Bounce1.hot.ee) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DpIZK-0000C4-P0 for emacs-devel@gnu.org; Mon, 04 Jul 2005 00:28:30 -0400 Original-Received: from mail.neti.ee (Relay8 [192.168.1.27]) by HOT-Bounce1.hot.ee (Postfix) with ESMTP id 966BD151715 for ; Mon, 4 Jul 2005 07:09:03 +0300 (EEST) Original-Received: from mail.neti.ee (80-235-34-48-dsl.mus.estpak.ee [80.235.34.48]) by Relayhost1.neti.ee (Postfix) with ESMTP id E786D2BA5; Mon, 4 Jul 2005 07:22:07 +0300 (EEST) Original-To: Lennart Borgman In-Reply-To: <42C7CA15.3080208@student.lu.se> (Lennart Borgman's message of "Sun, 03 Jul 2005 13:20:53 +0200") User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/22.0.50 (gnu/linux) X-Virus-Scanned: by amavisd-new-2.2.1 (20041222) (Debian) at neti.ee X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:40302 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:40302 > I found the face widget-inactive unusable, at least on w32. Can anyone > see the difference between active and inactive buttons in Custom? > > It is currently defined as > > (defface widget-inactive '((((class grayscale color) > (background dark)) > (:foreground "light gray")) > (((class grayscale color) > (background light)) > (:foreground "dim gray")) > (t > (:slant italic))) > "Face used for inactive widgets." > :group 'widget-faces) > ;; backward-compatibility alias > (put 'widget-inactive-face 'face-alias 'widget-inactive) > > I get the "dim gray" foreground. I do not know what "dim" stands for but > removing it gives me a more useful color. The widget label is now really > gray. (However it might even be too hard to read.) > > How does it look on other platforms? Can we change it to something useful? There is a special face for this purpose. Could you try to use it with (defface widget-inactive '((t (:inherit shadow))) "Face used for inactive widgets." :group 'widget-faces) -- Juri Linkov http://www.jurta.org/emacs/