1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-01 08:17:38 +00:00

* src/nsfns.m (ns_move_tooltip_to_mouse_location): Handle invisible frames.

This commit is contained in:
Po Lu 2022-06-12 10:13:04 +08:00
parent 0adbb21ece
commit 574c5d1de4

View File

@ -3816,7 +3816,8 @@ - (Lisp_Object)lispString
if (ns_tooltip)
size = [ns_tooltip frame].size;
else if (!FRAMEP (tip_frame)
|| !FRAME_LIVE_P (XFRAME (tip_frame)))
|| !FRAME_LIVE_P (XFRAME (tip_frame))
|| !FRAME_VISIBLE_P (XFRAME (tip_frame)))
return;
else
{