diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-08-12 11:30:12 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-08-12 11:30:12 +0200 |
commit | fce9f9ae639e1e773d2e33eae7f1d70cafce2c23 (patch) | |
tree | 532972e74c742762396679489de34e5518b35c7a | |
parent | Merge commit 'refs/merge-requests/162' of git://gitorious.org/rekonq/mainline... (diff) | |
parent | Set the hide timer of FindBar to single shot (diff) | |
download | rekonq-fce9f9ae639e1e773d2e33eae7f1d70cafce2c23.tar.xz |
Merge commit 'refs/merge-requests/163' of git://gitorious.org/rekonq/mainline
-rw-r--r-- | src/findbar.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/findbar.cpp b/src/findbar.cpp index 5d88dc1b..495e4f96 100644 --- a/src/findbar.cpp +++ b/src/findbar.cpp @@ -75,6 +75,7 @@ FindBar::FindBar(QWidget *parent) // hide timer connect(m_hideTimer, SIGNAL(timeout()), this, SLOT(hide())); + m_hideTimer->setSingleShot(true); // label QLabel *label = new QLabel(i18n("Find:")); |