From c2a2d0e9422809d41e513fcc274f3a66c5ee53d8 Mon Sep 17 00:00:00 2001 From: Benjamin Poulain Date: Wed, 11 Aug 2010 17:32:18 +0200 Subject: Set the hide timer of FindBar to single shot We don't need a timeout every minute after the bar has been hidden. --- src/findbar.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src') 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:")); -- cgit v1.2.1