diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2005-12-31 16:26:01 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2005-12-31 16:26:01 +0000 |
commit | 85a5eb0eb08f43513f0863835d790b4eb5d9efa1 (patch) | |
tree | 80bfd510ee39734abc8bb0ca8f645ebabdcaedad /lisp/cus-theme.el | |
parent | cdda1b59668b5362c19c8d95b01bd42ec333d6be (diff) | |
download | emacs-85a5eb0eb08f43513f0863835d790b4eb5d9efa1.tar.gz |
* cus-edit.el (custom-button-mouse): New variable.
(custom-button-mouse): New face.
(custom-raised-buttons, custom-mode): Use it.
* cus-theme.el (custom-new-theme-mode): Use custom-button-mouse.
Diffstat (limited to 'lisp/cus-theme.el')
-rw-r--r-- | lisp/cus-theme.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/cus-theme.el b/lisp/cus-theme.el index cc5890678a8..d7102fc11f7 100644 --- a/lisp/cus-theme.el +++ b/lisp/cus-theme.el @@ -50,8 +50,7 @@ use by `customize-create-theme'." (set (make-local-variable 'widget-documentation-face) 'custom-documentation) (set (make-local-variable 'widget-button-face) custom-button) (set (make-local-variable 'widget-button-pressed-face) custom-button-pressed) - (if custom-raised-buttons - (set (make-local-variable 'widget-mouse-face) custom-button)) + (set (make-local-variable 'widget-mouse-face) custom-button-mouse) (when custom-raised-buttons (set (make-local-variable 'widget-push-button-prefix) "") (set (make-local-variable 'widget-push-button-suffix) "") |