Function: hmouse-release-right-edge

hmouse-release-right-edge is a byte-compiled function defined in hui-window.el.

Signature

(hmouse-release-right-edge)

Documentation

Return non-nil if the last Smart Key release was at right window edge.

hmouse-edge-sensitivity value determines how near to actual edge the release must be.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-window.el
(defun hmouse-release-right-edge ()
  "Return non-nil if the last Smart Key release was at right window edge.
`hmouse-edge-sensitivity' value determines how near to actual edge the
release must be."
  (let ((args (if assist-flag assist-key-release-args
		 action-key-release-args))
	window-right last-release-x)
    (setq window-right (nth 2 (window-edges))
	  last-release-x (and args (hmouse-x-coord args)))
    (and last-release-x (>= (+ last-release-x hmouse-edge-sensitivity)
			    window-right)
	 (>= (- window-right last-release-x) 0))))