Function: which-key--hide-popup-on-frame-size-change
which-key--hide-popup-on-frame-size-change is a byte-compiled function
defined in which-key.el.gz.
Signature
(which-key--hide-popup-on-frame-size-change &optional _)
Documentation
Hide which-key popup if the frame is resized (to trigger a new popup).
Source Code
;; Defined in /usr/src/emacs/lisp/which-key.el.gz
(defun which-key--hide-popup-on-frame-size-change (&optional _)
"Hide which-key popup if the frame is resized (to trigger a new popup)."
(when (which-key--frame-size-changed-p)
(which-key--hide-popup)))