Function: hmouse-drag-between-frames
hmouse-drag-between-frames is a byte-compiled function defined in
hui-window.el.
Signature
(hmouse-drag-between-frames)
Documentation
Return non-nil if last Action Key depress and release were in different frames.
If free variable assist-flag is non-nil, uses Assist Key.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-window.el
(defun hmouse-drag-between-frames ()
"Return non-nil if last Action Key depress and release were in different frames.
If free variable `assist-flag' is non-nil, uses Assist Key."
(if assist-flag
(and (window-live-p assist-key-depress-window)
(window-live-p assist-key-release-window)
(not (eq (window-frame assist-key-depress-window)
(window-frame assist-key-release-window))))
(and (window-live-p action-key-depress-window)
(window-live-p action-key-release-window)
(not (eq (window-frame action-key-depress-window)
(window-frame action-key-release-window))))))