From: Alan Third Date: Sun, 8 Oct 2017 18:26:34 +0000 (+0100) Subject: Change pause in fullscreen toggling for NS port (bug#28496) X-Git-Tag: emacs-26.0.90~40 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=745aea2296caa87758d4e55b95ed63124970e8c3;p=emacs.git 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. --- 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