From linux-kernel Thu Nov 06 12:03:01 2014 From: =?UTF-8?q?Peter=20K=C3=BCmmel?= Date: Thu, 06 Nov 2014 12:03:01 +0000 To: linux-kernel Subject: [PATCH] xconfig: Don't move focus when clicking on the search button Message-Id: <1415275383-15301-2-git-send-email-syntheticpp () gmx ! net> X-MARC-Message: https://marc.info/?l=linux-kernel&m=141527542601770 When the search button is clicked the focus moves to the search button. Changing the search text after such a button press requires an additional click into the edit field. With this patch this click is not necessary anymore because the button is configured to not accept the focus. Signed-off-by: Peter Kümmel --- scripts/kconfig/qconf.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index 9d3b04b..750a5ff 100644 --- a/scripts/kconfig/qconf.cc +++ b/scripts/kconfig/qconf.cc @@ -1198,6 +1198,7 @@ ConfigSearchWindow::ConfigSearchWindow(ConfigMainWindow* parent, const char *nam layout2->addWidget(editField); searchButton = new QPushButton(_("Search"), this); searchButton->setAutoDefault(FALSE); + searchButton->setFocusPolicy(Qt::NoFocus); connect(searchButton, SIGNAL(clicked()), SLOT(search())); layout2->addWidget(searchButton); layout1->addLayout(layout2); -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/