Skip to content

Commit 76567f9

Browse files
committed
kconfig: qconf: do not show goParent button in split view
When a menu is selected in the split view, the right pane displays the goParent button, but it is never functional. This is unnecessary, as you can select a menu from the menu tree in the left pane. Signed-off-by: Masahiro Yamada <[email protected]>
1 parent b6962d8 commit 76567f9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/kconfig/qconf.cc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -436,8 +436,7 @@ void ConfigList::updateList()
436436
return;
437437
}
438438

439-
if (rootEntry != &rootmenu && (mode == singleMode ||
440-
(mode == symbolMode && rootEntry->parent != &rootmenu))) {
439+
if (rootEntry != &rootmenu && mode == singleMode) {
441440
item = (ConfigItem *)topLevelItem(0);
442441
if (!item)
443442
item = new ConfigItem(this, 0, true);

0 commit comments

Comments
 (0)