diff options
author | Yoann Laissus <yoann.laissus@gmail.com> | 2010-09-02 22:03:47 +0200 |
---|---|---|
committer | Yoann Laissus <yoann.laissus@gmail.com> | 2010-09-02 22:07:53 +0200 |
commit | 83c667187cd4232c412f6390c4ba33a13c328c5a (patch) | |
tree | 98dcd634470061e24ea9ae1b38096a9f45ae76cc /src/findbar.h | |
parent | Fix wrong highlights in the search strings (diff) | |
download | rekonq-83c667187cd4232c412f6390c4ba33a13c328c5a.tar.xz |
- Follow pano's suggestion : Shift + Enter -> findPrevious()
- Don't call findNext() if Ctrl + F is pressed with an existing selection
- Correctly update highlights with the timer
- A little cleanup
Diffstat (limited to 'src/findbar.h')
-rw-r--r-- | src/findbar.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/findbar.h b/src/findbar.h index 6451aac8..9aa5f039 100644 --- a/src/findbar.h +++ b/src/findbar.h @@ -57,9 +57,11 @@ public: void setVisible(bool visible); +protected: + void keyPressEvent(QKeyEvent *event); + signals: void searchString(const QString &); - void visibilityChanged(bool); private: MainWindow *m_mainWindow; |