summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-08-12 11:30:12 +0200
committerAndrea Diamantini <adjam7@gmail.com>2010-08-12 11:30:12 +0200
commitfce9f9ae639e1e773d2e33eae7f1d70cafce2c23 (patch)
tree532972e74c742762396679489de34e5518b35c7a /src
parentMerge commit 'refs/merge-requests/162' of git://gitorious.org/rekonq/mainline... (diff)
parentSet the hide timer of FindBar to single shot (diff)
downloadrekonq-fce9f9ae639e1e773d2e33eae7f1d70cafce2c23.tar.xz
Merge commit 'refs/merge-requests/163' of git://gitorious.org/rekonq/mainline
Diffstat (limited to 'src')
-rw-r--r--src/findbar.cpp1
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:"));