Mercurial > emacs
changeset 28245:6896ac619ba9
(custom-button-face) [w32]: Use same face as x.
(custom-button-pressed-face) [w32]: Likewise.
author | Jason Rumney <jasonr@gnu.org> |
---|---|
date | Tue, 21 Mar 2000 21:58:32 +0000 |
parents | 0a2dc2be3dd4 |
children | 7ee0bbd93bea |
files | lisp/cus-edit.el |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/cus-edit.el Tue Mar 21 21:53:43 2000 +0000 +++ b/lisp/cus-edit.el Tue Mar 21 21:58:32 2000 +0000 @@ -1688,6 +1688,8 @@ (defface custom-button-face '((((type x) (class color)) ; Like default modeline (:box (:line-width 2 :style released-button) :background "lightgrey")) + (((type w32) (class color)) ; Like default modeline + (:box (:line-width 2 :style released-button) :background "lightgrey")) (t nil)) "Face used for buttons in customization buffers." @@ -1697,6 +1699,8 @@ (defface custom-button-pressed-face '((((type x) (class color)) (:box (:line-width 2 :style pressed-button) :background "lightgrey")) + (((type w32) (class color)) + (:box (:line-width 2 :style pressed-button) :background "lightgrey")) (t (:inverse-video t))) "Face used for buttons in customization buffers."