From 6db7ee5a7d007a17511c53d87d02e257165bf591 Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Thu, 23 Jul 2009 00:31:39 +0200 Subject: Fixing findbar focus on find request. Also hiding it with ESC key when it has no focus. Courtesy patch from Johannes Zellner. Many Thanks! --- src/mainwindow.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/mainwindow.cpp') diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 5958e4be..d86729ad 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); -- cgit v1.2.1