diff options
author | Yoann Laissus <yoann.laissus@gmail.com> | 2010-02-19 15:10:40 +0100 |
---|---|---|
committer | Yoann Laissus <yoann.laissus@gmail.com> | 2010-02-19 15:10:40 +0100 |
commit | 983f2f1af4afeaa0539ffe533626233becf28a75 (patch) | |
tree | c80131c23cdd291ace91ccc61b54b223bd8bcee8 /src/findbar.cpp | |
parent | .. and check that the changes you do are right. (diff) | |
download | rekonq-983f2f1af4afeaa0539ffe533626233becf28a75.tar.xz |
Workaround the bug of qtwebkit in the function findText(). An empty string doesn't clear the selection.
Diffstat (limited to 'src/findbar.cpp')
-rw-r--r-- | src/findbar.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/findbar.cpp b/src/findbar.cpp index 1cb16e3f..d8ae08cc 100644 --- a/src/findbar.cpp +++ b/src/findbar.cpp @@ -64,6 +64,7 @@ FindBar::FindBar(KMainWindow *mainwindow) hideButton->setAutoRaise(true); hideButton->setIcon(KIcon("dialog-close")); connect(hideButton, SIGNAL(clicked()), this, SLOT(hide())); + connect(hideButton, SIGNAL(clicked()), this, SLOT(findNext())); layout->addWidget(hideButton); layout->setAlignment(hideButton, Qt::AlignLeft | Qt::AlignTop); @@ -138,6 +139,11 @@ void FindBar::show() QWidget::show(); m_hideTimer->start(60000); + + // emit a new find signal with the current text + QString temp = m_lineEdit->text(); + m_lineEdit->setText(""); + m_lineEdit->setText(m_lineEdit->text()); } |