From 731d16f16966d6b8b8bbc33ece75e8b8f8fece86 Mon Sep 17 00:00:00 2001 From: Jason Rumney Date: Tue, 21 Mar 2000 21:58:32 +0000 Subject: [PATCH] (custom-button-face) [w32]: Use same face as x. (custom-button-pressed-face) [w32]: Likewise. --- lisp/cus-edit.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index 85cef188e86..90a7db3b9b9 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el @@ -1688,6 +1688,8 @@ and `face'." (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 @@ and `face'." (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." -- 2.39.5