# HG changeset patch # User Jason Rumney # Date 953675912 0 # Node ID 6896ac619ba99ed971d3a651826ebf9e25e93c07 # Parent 0a2dc2be3dd4705e1b7675e667d46d374ecbac5a (custom-button-face) [w32]: Use same face as x. (custom-button-pressed-face) [w32]: Likewise. diff -r 0a2dc2be3dd4 -r 6896ac619ba9 lisp/cus-edit.el --- 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."