We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 47cc2b2 + ec4f467 commit e4e614bCopy full SHA for e4e614b
Src/StartMenu/StartMenuDLL/MenuContainer.cpp
@@ -1084,7 +1084,8 @@ void CMenuContainer::AddStandardItems( void )
1084
if (m_bSubMenu && pStdItem->id==s_ShutdownCommand)
1085
continue;
1086
1087
- if (pStdItem->id==MENU_COLUMN_BREAK && m_bTwoColumns)
+ const bool bTwoColumns = (!m_bSubMenu && s_Skin.TwoColumns);
1088
+ if (pStdItem->id==MENU_COLUMN_BREAK && bTwoColumns)
1089
mainIconSize=s_Skin.Main2_icon_size;
1090
1091
int stdOptions=GetStdOptions(pStdItem->id);
0 commit comments