diff options
author | Olivier Goffart <ogoffart@trolltech.com> | 2009-08-07 07:58:29 (GMT) |
---|---|---|
committer | Olivier Goffart <ogoffart@trolltech.com> | 2009-08-07 09:40:28 (GMT) |
commit | 8c621378e79a417fc7512691bf07023c1496aac0 (patch) | |
tree | b7e465714cd87be1ea492c617c70659f29f10b89 /src | |
parent | 93c883b5388a5ed6e9dbd01ca6b314163576ede5 (diff) | |
download | Qt-8c621378e79a417fc7512691bf07023c1496aac0.zip Qt-8c621378e79a417fc7512691bf07023c1496aac0.tar.gz Qt-8c621378e79a417fc7512691bf07023c1496aac0.tar.bz2 |
Fixes: QComboBox keyboard search not working properly when current index is -1
If the current index is invalid, start would be (0,0) but would be
skiped
Task-number: 220195
Reviewed-by: thierry
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/itemviews/qabstractitemview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/itemviews/qabstractitemview.cpp b/src/gui/itemviews/qabstractitemview.cpp index d929590..421d511 100644 --- a/src/gui/itemviews/qabstractitemview.cpp +++ b/src/gui/itemviews/qabstractitemview.cpp @@ -2650,7 +2650,7 @@ void QAbstractItemView::keyboardSearch(const QString &search) if (search.isEmpty() || (d->keyboardInputTime.msecsTo(now) > QApplication::keyboardInputInterval())) { d->keyboardInput = search; - skipRow = true; + skipRow = currentIndex().isValid(); //if it is not valid we should really start at QModelIndex(0,0) } else { d->keyboardInput += search; } |