Function: widget-default-mouse-face-get

widget-default-mouse-face-get is a byte-compiled function defined in wid-edit.el.gz.

Signature

(widget-default-mouse-face-get WIDGET)

Source Code

;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
(defun widget-default-mouse-face-get (widget)
  ;; Use :mouse-face or widget-mouse-face
  (or (widget-get widget :mouse-face)
      (let ((parent (widget-get widget :parent)))
	(if parent
	    (widget-apply parent :mouse-face-get)
	  widget-mouse-face))))