From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: John Paul Wallington Newsgroups: gmane.emacs.devel Subject: should tooltip face be variable-pitch ? Date: Tue, 22 Jul 2003 16:13:43 +0100 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1058887308 25316 80.91.224.249 (22 Jul 2003 15:21:48 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 22 Jul 2003 15:21:48 +0000 (UTC) Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Tue Jul 22 17:21:47 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19eyt1-0006AB-00 for ; Tue, 22 Jul 2003 17:17:07 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 19ezAD-0001Vx-00 for ; Tue, 22 Jul 2003 17:34:53 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19eyu2-00078a-8a for emacs-devel@quimby.gnus.org; Tue, 22 Jul 2003 11:18:10 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.20) id 19eytc-0006oR-O9 for emacs-devel@gnu.org; Tue, 22 Jul 2003 11:17:44 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.20) id 19eysm-0005th-9l for emacs-devel@gnu.org; Tue, 22 Jul 2003 11:16:53 -0400 Original-Received: from host217-44-221-36.range217-44.btcentralplus.com ([217.44.221.36] helo=indigo.shootybangbang.com) by monty-python.gnu.org with esmtp (Exim 4.20) id 19eyqE-0004IK-SN for emacs-devel@gnu.org; Tue, 22 Jul 2003 11:14:15 -0400 Original-Received: from jpw by indigo.shootybangbang.com with local (Exim 3.36 #1 (Debian)) id 19eypj-000333-00 for ; Tue, 22 Jul 2003 16:13:43 +0100 Original-To: emacs-devel@gnu.org X-Attribution: jpw X-Face: R(_z-rF:grdKO.*u`n); p.i$Eiz=h^CO5eDYv"4:K@#\HN09*Ykx}}B{kF/KH}%f_o^Wp List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:15667 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:15667 How about changing the tooltip face to be variable-pitch rather than monospaced? That would make Emacs tooltips look more like the tooltips of other programs. WDYT? diff -u -r1.32 tooltip.el --- tooltip.el 4 Feb 2003 12:09:56 -0000 1.32 +++ tooltip.el 22 Jul 2003 15:07:58 -0000 @@ -113,8 +113,11 @@ (defface tooltip '((((class color)) - (:background "lightyellow" :foreground "black")) - (t ())) + :background "lightyellow" + :foreground "black" + :inherit variable-pitch) + (t + :inherit variable-pitch)) "Face for tooltips." :group 'tooltip)