From 1f009b1e11c283ce1c13ce0c03d3b943c4015fb9 Mon Sep 17 00:00:00 2001 From: stippi Date: Tue, 18 May 2010 19:13:58 +0000 Subject: [PATCH] Tweaked the delays for the auto-hiding of the mouse pointer and the interface in full-screen mode. git-svn-id: http://svn.haiku-os.org/webpositive/webkit/trunk@502 94f232f2-1747-11df-bad5-a5bfde151594 --- src/apps/webpositive/BrowserWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/webpositive/BrowserWindow.cpp b/src/apps/webpositive/BrowserWindow.cpp index 49a0dc3a11..3ff7e2d9f3 100644 --- a/src/apps/webpositive/BrowserWindow.cpp +++ b/src/apps/webpositive/BrowserWindow.cpp @@ -1904,7 +1904,7 @@ BrowserWindow::_CheckAutoHideInterface() _ShowInterface(true); else if (fNavigationGroup->IsVisible() && fLastMousePos.y > fNavigationGroup->Frame().bottom - && system_time() - fLastMouseMovedTime > 3000000) { + && system_time() - fLastMouseMovedTime > 1000000) { // NOTE: Do not re-use navigationGroupBottom in the above // check, since we only want to hide the interface when it is visible. _ShowInterface(false);