Auto-hide cursor after 2 secs already, thanks Axel, for the suggestion.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30802 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2009-05-19 18:51:08 +00:00
parent 66c7ac945a
commit ba0e6050f5
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ VideoView::Pulse()
return;
bigtime_t now = system_time();
if (now - fLastMouseMove > 5LL * 1000000) {
if (now - fLastMouseMove > 2LL * 1000000) {
fLastMouseMove = now;
// take care of disabling the screen saver
BPoint where;