Hello,

attached a patch for fixing the findBar focus by setting the focus on every 
findrequest.
And also hiding the findBar if Key_Escape and findBar has no focus.

Thanks,

Johannes
diff --git a/src/findbar.cpp b/src/findbar.cpp
index 4f7ce11..3efe470 100644
--- a/src/findbar.cpp
+++ b/src/findbar.cpp
@@ -115,15 +115,15 @@ void FindBar::clear()
 
 void FindBar::show()
 {
+    // set focus to findbar if user select showFindBar shortcut
+    m_lineEdit->setFocus();
+    m_lineEdit->selectAll();
+
     // show findbar if not visible
     if (isVisible())
         return;
 
     QWidget::show();
-
-    // set focus to findbar if user select showFindBar shortcut
-    m_lineEdit->setFocus();
-    m_lineEdit->selectAll();
 }
 
 
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 5958e4b..d86729a 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -855,6 +855,18 @@ bool MainWindow::queryClose()
 }
 
 
+void MainWindow::keyPressEvent(QKeyEvent *event)
+{
+    if (event->key() == Qt::Key_Escape)
+    {
+        m_findBar->hide();
+        return;
+    }
+
+    KXmlGuiWindow::keyPressEvent(event);
+}
+
+
 QAction *MainWindow::actionByName(const QString name)
 {
     QAction *ret = actionCollection()->action(name);
diff --git a/src/mainwindow.h b/src/mainwindow.h
index f49a061..0ca1342 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -91,6 +91,7 @@ public slots:
 
 protected:
     bool queryClose();
+    void keyPressEvent(QKeyEvent *event);
 
 private slots:
     void postLaunch();
_______________________________________________
rekonq mailing list
[email protected]
https://mail.kde.org/mailman/listinfo/rekonq

Reply via email to