[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <9cc77cb28cf641d537b3dd08892f3d655f26ffb2.1593423060.git.mchehab+huawei@kernel.org>
Date: Mon, 29 Jun 2020 11:35:36 +0200
From: Mauro Carvalho Chehab <mchehab+huawei@...nel.org>
To: unlisted-recipients:; (no To-header on input)
Cc: Mauro Carvalho Chehab <mchehab+huawei@...nel.org>,
Maxim Levitsky <mlevitsk@...hat.com>,
Masahiro Yamada <masahiroy@...nel.org>,
linux-kbuild@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH v2 2/5] kconfig: qconf: ensure that only one item will be highlighted
The logic which is used by search to show a new link lacks
support for un-selecting a previously-selected item.
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@...nel.org>
---
scripts/kconfig/qconf.cc | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc
index 0e06afa08908..67dac2406a98 100644
--- a/scripts/kconfig/qconf.cc
+++ b/scripts/kconfig/qconf.cc
@@ -1662,6 +1662,13 @@ void ConfigMainWindow::setMenuLink(struct menu *menu)
}
if (list) {
+ /* Clear an already-selected item */
+ if (!list->selectedItems().isEmpty()) {
+ item = (ConfigItem*)list->selectedItems().first();
+ if (item)
+ item->setSelected(false);
+ }
+
item = list->findConfigItem(menu);
if (item) {
item->setSelected(true);
--
2.26.2
Powered by blists - more mailing lists