From c13937ccb6c9ebf7a1dd9eaa7eb6bb3768409093 Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Tue, 29 Dec 2020 21:37:31 +0200 Subject: [PATCH] * lisp/x-dnd.el (x-dnd-get-drop-x-y): Add safer check for top/left (bug#45277) --- lisp/x-dnd.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lisp/x-dnd.el b/lisp/x-dnd.el index 1d49f462531..5af54903605 100644 --- a/lisp/x-dnd.el +++ b/lisp/x-dnd.el @@ -411,8 +411,10 @@ Coordinates are required to be absolute. FRAME is the frame and W is the window where the drop happened. If W is a window, return its absolute coordinates, otherwise return the frame coordinates." - (let* ((frame-left (frame-parameter frame 'left)) - (frame-top (frame-parameter frame 'top))) + (let* ((frame-left (or (car-safe (cdr-safe (frame-parameter frame 'left))) + (frame-parameter frame 'left))) + (frame-top (or (car-safe (cdr-safe (frame-parameter frame 'top))) + (frame-parameter frame 'top)))) (if (windowp w) (let ((edges (window-inside-pixel-edges w))) (cons -- 2.39.5