Fixed the last bug with hardware mouse detection

This commit is contained in:
pelya
2012-02-03 17:41:43 +02:00
parent bfcd7ae8b6
commit fa13f76061
4 changed files with 9 additions and 9 deletions

View File

@@ -833,11 +833,11 @@ static int getClickTimeout(int v)
{
switch(v)
{
case 0: return 300;
case 1: return 500;
case 2: return 700;
case 3: return 1000;
case 4: return 1500;
case 0: return 200;
case 1: return 300;
case 2: return 400;
case 3: return 700;
case 4: return 1000;
}
return 1000;
}