aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Rumney2000-03-21 21:58:32 +0000
committerJason Rumney2000-03-21 21:58:32 +0000
commit731d16f16966d6b8b8bbc33ece75e8b8f8fece86 (patch)
treeea4ad0afe1ae5c60281974ce9dc6107b3502d1c5
parent3f6e4b8bfbe7e6fc238ff5b63f820722ea9d47d1 (diff)
downloademacs-731d16f16966d6b8b8bbc33ece75e8b8f8fece86.tar.gz
emacs-731d16f16966d6b8b8bbc33ece75e8b8f8fece86.zip
(custom-button-face) [w32]: Use same face as x.
(custom-button-pressed-face) [w32]: Likewise.
-rw-r--r--lisp/cus-edit.el4
1 files changed, 4 insertions, 0 deletions
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'."
1688(defface custom-button-face 1688(defface custom-button-face
1689 '((((type x) (class color)) ; Like default modeline 1689 '((((type x) (class color)) ; Like default modeline
1690 (:box (:line-width 2 :style released-button) :background "lightgrey")) 1690 (:box (:line-width 2 :style released-button) :background "lightgrey"))
1691 (((type w32) (class color)) ; Like default modeline
1692 (:box (:line-width 2 :style released-button) :background "lightgrey"))
1691 (t 1693 (t
1692 nil)) 1694 nil))
1693 "Face used for buttons in customization buffers." 1695 "Face used for buttons in customization buffers."
@@ -1697,6 +1699,8 @@ and `face'."
1697(defface custom-button-pressed-face 1699(defface custom-button-pressed-face
1698 '((((type x) (class color)) 1700 '((((type x) (class color))
1699 (:box (:line-width 2 :style pressed-button) :background "lightgrey")) 1701 (:box (:line-width 2 :style pressed-button) :background "lightgrey"))
1702 (((type w32) (class color))
1703 (:box (:line-width 2 :style pressed-button) :background "lightgrey"))
1700 (t 1704 (t
1701 (:inverse-video t))) 1705 (:inverse-video t)))
1702 "Face used for buttons in customization buffers." 1706 "Face used for buttons in customization buffers."