┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/kitemviews/private/kitemlistkeyboardsearchmanager.h
diff options
context:
space:
mode:
authorMéven Car <[email protected]>2019-10-26 12:53:04 +0200
committerMéven Car <[email protected]>2019-10-26 12:53:34 +0200
commita5ce798f282b6cf9e153bba89f9caea0cec37da0 (patch)
tree818304092ce30546b7d6fc126ed471e9f7b5fd57 /src/kitemviews/private/kitemlistkeyboardsearchmanager.h
parentd8c11a67bd98820fd2c9a4b616460857af70344b (diff)
When the selection is deselected, restart the keyboard search from the beginning
Summary: BUG: 411538 FIXED-IN: 19.12 Test Plan: Open a directory with 3 files starting with the same letter. 1. Press this letter key twice 2. The second file is selected 3. Deselect the file with the mouse or using Esc 4. Wait 1 second 5. Press the same key again Before: The third file gets selected After: The first file get selected ctest Reviewers: #dolphin, elvisangelaccio, ngraham Reviewed By: #dolphin, elvisangelaccio, ngraham Subscribers: ngraham, kfm-devel Tags: #dolphin Differential Revision: https://phabricator.kde.org/D23716
Diffstat (limited to 'src/kitemviews/private/kitemlistkeyboardsearchmanager.h')
-rw-r--r--src/kitemviews/private/kitemlistkeyboardsearchmanager.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/kitemviews/private/kitemlistkeyboardsearchmanager.h b/src/kitemviews/private/kitemlistkeyboardsearchmanager.h
index 29bec1414..9995c16b0 100644
--- a/src/kitemviews/private/kitemlistkeyboardsearchmanager.h
+++ b/src/kitemviews/private/kitemlistkeyboardsearchmanager.h
@@ -24,6 +24,7 @@
#define KITEMLISTKEYBOARDSEARCHMANAGER_H
#include "dolphin_export.h"
+#include "kitemviews/kitemset.h"
#include <QElapsedTimer>
#include <QObject>
@@ -64,6 +65,7 @@ public:
public slots:
void slotCurrentChanged(int current, int previous);
+ void slotSelectionChanged(const KItemSet& current, const KItemSet& previous);
signals:
/**
@@ -79,6 +81,7 @@ signals:
private:
QString m_searchedString;
+ bool m_isSearchRestarted;
QElapsedTimer m_keyboardInputTime;
qint64 m_timeout;
};