From 01a9ac21a5517b36c617f9ff1468b67275e32735 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Wed, 26 Mar 2014 09:40:53 +0800 Subject: [PATCH] Increase unresponsive time to 2s when closing. Fixes https://github.com/atom/atom/issues/1793. --- atom/browser/native_window.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/atom/browser/native_window.cc b/atom/browser/native_window.cc index 1e1f75fc143b..5c50d1f75a40 100644 --- a/atom/browser/native_window.cc +++ b/atom/browser/native_window.cc @@ -288,12 +288,12 @@ void NativeWindow::CloseWebContents() { content::WebContents* web_contents(GetWebContents()); // Assume the window is not responding if it doesn't cancel the close and is - // not closed in 500ms, in this way we can quickly show the unresponsive + // not closed in 2000ms, in this way we can quickly show the unresponsive // dialog when the window is busy executing some script withouth waiting for // the unresponsive timeout. if (!Browser::Get()->is_quiting() && window_unresposive_closure_.IsCancelled()) - ScheduleUnresponsiveEvent(500); + ScheduleUnresponsiveEvent(2000); if (web_contents->NeedToFireBeforeUnload()) web_contents->GetRenderViewHost()->FirePageBeforeUnload(false);