Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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 <masahiroy@kernel.org>

+1 -2
+1 -2
scripts/kconfig/qconf.cc
··· 436 436 return; 437 437 } 438 438 439 - if (rootEntry != &rootmenu && (mode == singleMode || 440 - (mode == symbolMode && rootEntry->parent != &rootmenu))) { 439 + if (rootEntry != &rootmenu && mode == singleMode) { 441 440 item = (ConfigItem *)topLevelItem(0); 442 441 if (!item) 443 442 item = new ConfigItem(this, 0, true);