diff options
author | Benjamin Poulain <benjamin.poulain@nokia.com> | 2010-08-11 17:32:18 +0200 |
---|---|---|
committer | Benjamin Poulain <benjamin.poulain@nokia.com> | 2010-08-11 17:32:18 +0200 |
commit | c2a2d0e9422809d41e513fcc274f3a66c5ee53d8 (patch) | |
tree | 20eb287033603afd199e73fda1f9e49909a13eb1 /src | |
parent | remove superfluous space (diff) | |
download | rekonq-c2a2d0e9422809d41e513fcc274f3a66c5ee53d8.tar.xz |
Set the hide timer of FindBar to single shot
We don't need a timeout every minute after the bar has been hidden.
Diffstat (limited to 'src')
-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:")); |