| 299 | == Disable Mouse Issues (Double Click - Rename) == |
| 300 | |
| 301 | {{{ |
| 302 | @REM Fix mouse drag width/height and most autoscrolling |
| 303 | reg add "HKCU\Control Panel\Desktop" /v DragWidth /d 64 /t REG_SZ /f |
| 304 | reg add "HKCU\Control Panel\Desktop" /v DragHeight /d 64 /t REG_SZ /f |
| 305 | reg add "HKCU\Control Panel\Desktop" /v WheelScrollChars /d 0 /t REG_SZ /f |
| 306 | reg add "HKCU\Control Panel\Desktop" /v WheelScrollLines /d 3 /t REG_SZ /f |
| 307 | |
| 308 | @REM Prevent double-click going into "Rename" mode |
| 309 | reg add "HKCU\Control Panel\Mouse" /v DoubleClickHeight /d 24 /t REG_SZ /f |
| 310 | reg add "HKCU\Control Panel\Mouse" /v DoubleClickSpeed /d 270 /t REG_SZ /f |
| 311 | reg add "HKCU\Control Panel\Mouse" /v DoubleClickWidth /d 400 /t REG_SZ /f |
| 312 | |
| 313 | }}} |
| 314 | |
| 315 | |