From 745aea2296caa87758d4e55b95ed63124970e8c3 Mon Sep 17 00:00:00 2001 From: Alan Third Date: Sun, 8 Oct 2017 19:26:34 +0100 Subject: [PATCH] Change pause in fullscreen toggling for NS port (bug#28496) * lisp/frame.el (toggle-frame-fullscreen): Replace sit-for with sleep-for, and reduce time. --- lisp/frame.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/frame.el b/lisp/frame.el index 7b57aa3df1f..f8aa5c6e523 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -2438,7 +2438,7 @@ See also `toggle-frame-maximized'." ;; Manipulating a frame without waiting for the fullscreen ;; animation to complete can cause a crash, or other unexpected ;; behaviour, on macOS (bug#28496). - (when (featurep 'cocoa) (sit-for 1)))) + (when (featurep 'cocoa) (sleep-for 0.5)))) ;;;; Key bindings -- 2.39.5