Mercurial > emacs
changeset 52031:5163fa137977
(defface tooltip): Inherit from variable-pitch.
author | John Paul Wallington <jpw@pobox.com> |
---|---|
date | Wed, 23 Jul 2003 11:37:13 +0000 |
parents | 43dac23eef97 |
children | 853a35645cb8 |
files | lisp/tooltip.el |
diffstat | 1 files changed, 5 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/tooltip.el Wed Jul 23 11:16:55 2003 +0000 +++ b/lisp/tooltip.el Wed Jul 23 11:37:13 2003 +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)