Skip to content
Snippets Groups Projects
Commit d8732a59 authored by Frank Reininghaus's avatar Frank Reininghaus
Browse files

Reduce the timeout in KItemListKeyboardSearchManager to 1 second

It turned out that the longer timeout, introduced recently in
02eab49b, not only made multi-letter
keyboard searches easier, but also had some unwanted side effects. I
hope that 1 second, which is between the previous value of 5 seconds and
the pre-KDE 4.8.2 value of 0.4 seconds, is a compromise which will fit
most users' needs.
We will try to improve the situation further in future releases by
providing visual feedback about the keyboard search, but such a change
would not be suitable for a bug-fix release.
CCBUG:297458
CCBUG:297488
parent ed5f3aab
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@
KItemListKeyboardSearchManager::KItemListKeyboardSearchManager(QObject* parent) :
QObject(parent),
m_timeout(5000)
m_timeout(1000)
{
m_keyboardInputTime.invalidate();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment