Skip to content

Commit 62b9496

Browse files
committed
Respect Use multiple columns setting for all folder items
Currently it was used only in some cases (like Programs/Apps folder). It will be more consistent to respect the setting for all folder items. Fixes #436.
1 parent 6242e8d commit 62b9496

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Src/StartMenu/StartMenuDLL/MenuCommands.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ void CMenuContainer::OpenSubMenu( int index, TActivateType type, bool bShift )
402402
if (m_Options&CONTAINER_NOEXTENSIONS)
403403
options|=CONTAINER_NOEXTENSIONS;
404404

405-
if (item.id==MENU_PROGRAMS || item.id==MENU_APPS || (m_Options&CONTAINER_MULTICOL_REC))
405+
if (item.id==MENU_PROGRAMS || item.id==MENU_APPS || item.bFolder || (m_Options&CONTAINER_MULTICOL_REC))
406406
options|=CONTAINER_MULTICOL_REC;
407407
if ((options&CONTAINER_MULTICOL_REC) && !bShift)
408408
options|=CONTAINER_MULTICOLUMN;

0 commit comments

Comments
 (0)