diff options
Diffstat (limited to 'src/input/keyboardconfig.cpp')
-rw-r--r-- | src/input/keyboardconfig.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/keyboardconfig.cpp b/src/input/keyboardconfig.cpp index a5e3674ed..6cf524842 100644 --- a/src/input/keyboardconfig.cpp +++ b/src/input/keyboardconfig.cpp @@ -251,7 +251,6 @@ void KeyboardConfig::handleRepeat(const int time) { bool repeat(false); const int key = (*it).first; - int &keyTime = (*it).second; if (key >= 0) { if (mActiveKeys && mActiveKeys[key]) @@ -264,6 +263,7 @@ void KeyboardConfig::handleRepeat(const int time) } if (repeat) { + int &keyTime = (*it).second; if (time > keyTime && abs(time - keyTime) > static_cast<signed>(mRepeatTime)) { |