diff options
author | Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> | 2013-01-06 15:23:13 +0100 |
---|---|---|
committer | Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> | 2013-01-06 15:23:13 +0100 |
commit | 3106ac04aa4edfc811c7a056482f8c33a9c52ee7 (patch) | |
tree | 323be582548e18febf1f05883d99ac572cc8bece | |
parent | 92a4df9aa4d5c6ffbf811ce0d778a7322897f1a7 (diff) | |
download | vdr-plugin-inputdev-3106ac04aa4edfc811c7a056482f8c33a9c52ee7.tar.gz vdr-plugin-inputdev-3106ac04aa4edfc811c7a056482f8c33a9c52ee7.tar.bz2 |
use better defaults for the repeat rate
-rw-r--r-- | inputdev.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inputdev.cc b/inputdev.cc index 40db486..d87a72f 100644 --- a/inputdev.cc +++ b/inputdev.cc @@ -617,7 +617,7 @@ bool cInputDevice::set_repeat_rate(unsigned int delay_ms, cInputDeviceController::cInputDeviceController(cPlugin &p) : cRemote("inputdev"), plugin_(p), fd_udev_(-1), fd_epoll_(-1), - repeat_delay_ms_(500), repeat_rate_ms_(1000) + repeat_delay_ms_(250), repeat_rate_ms_(100) { fd_alive_[0] = -1; fd_alive_[1] = -1; |