]> git.eshelyaron.com Git - emacs.git/commitdiff
(custom-button-face) [w32]: Use same face as x.
authorJason Rumney <jasonr@gnu.org>
Tue, 21 Mar 2000 21:58:32 +0000 (21:58 +0000)
committerJason Rumney <jasonr@gnu.org>
Tue, 21 Mar 2000 21:58:32 +0000 (21:58 +0000)
(custom-button-pressed-face) [w32]: Likewise.

lisp/cus-edit.el

index 85cef188e86d2d954d5713810cae322ab9b7992d..90a7db3b9b97d2996bed37cdb984f30e2f339662 100644 (file)
@@ -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."