Function: hmouse-modeline-resize-window
hmouse-modeline-resize-window is a byte-compiled function defined in
hui-window.el.
Signature
(hmouse-modeline-resize-window)
Documentation
Resize window whose mode line was depressed upon with the last Smart Key.
Resize amount depends upon the vertical difference between press and release of the Smart Key.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-window.el
(defun hmouse-modeline-resize-window ()
"Resize window whose mode line was depressed upon with the last Smart Key.
Resize amount depends upon the vertical difference between press and release
of the Smart Key."
(cond ((not (hyperb:window-system)) nil)
(t ;; Restore position of point prior to Action Key release.
(when action-key-release-prev-point
(let ((obuf (current-buffer)))
(unwind-protect
(progn
(set-buffer
(marker-buffer action-key-release-prev-point))
(goto-char
(marker-position action-key-release-prev-point)))
(set-buffer obuf)))))))