mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	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>
This commit is contained in:
		
							parent
							
								
									af737b4def
								
							
						
					
					
						commit
						cc1c08edcc
					
				
					 1 changed files with 3 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -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) {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue