diff options
author | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2020-06-30 08:26:40 +0200 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-07-02 00:00:02 +0900 |
commit | cc1c08edccaf5317d99a17a3231fe06381044e83 (patch) | |
tree | aa6b8660858708e97610957573fd1e354b48fe19 /scripts/kconfig/qconf.cc | |
parent | af737b4defe14eb4a2e4d6016973cc90df1d77d6 (diff) | |
download | linux-cc1c08edccaf5317d99a17a3231fe06381044e83.tar.gz linux-cc1c08edccaf5317d99a17a3231fe06381044e83.tar.bz2 linux-cc1c08edccaf5317d99a17a3231fe06381044e83.zip |
kconfig: qconf: don't show goback button on splitMode
the goback button does nothing on splitMode. So, why display
it?
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig/qconf.cc')
-rw-r--r-- | scripts/kconfig/qconf.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index e43fe4dcd4e7..6a327b69ff5f 100644 --- a/scripts/kconfig/qconf.cc +++ b/scripts/kconfig/qconf.cc @@ -437,9 +437,10 @@ void ConfigList::updateList(ConfigItem* item) if (rootEntry != &rootmenu && (mode == singleMode || (mode == symbolMode && rootEntry->parent != &rootmenu))) { item = (ConfigItem *)topLevelItem(0); - if (!item) + if (!item && mode != symbolMode) { item = new ConfigItem(this, 0, true); - last = item; + last = item; + } } if ((mode == singleMode || (mode == symbolMode && !(rootEntry->flags & MENU_ROOT))) && rootEntry->sym && rootEntry->prompt) { |