This commit is contained in:
Glenn Maynard
2007-03-21 06:38:11 +00:00
parent eed9ff74f5
commit 8cbd14b99f
+5 -4
View File
@@ -596,17 +596,18 @@ void OptionsList::SelectItem( const RString &sRowName, int iMenuItem )
bSelections[iMenuItem] = true;
}
ExportRow( sRowName );
UpdateMenuFromSelections();
if( pHandler->m_Def.m_bOneChoiceForAllPlayers && m_pLinked != NULL )
{
vector<bool> &bLinkedSelections = m_pLinked->m_bSelections[sRowName];
bLinkedSelections = bSelections;
if( m_pLinked->IsOpened() )
m_pLinked->UpdateMenuFromSelections();
}
ExportRow( sRowName );
UpdateMenuFromSelections();
}
void OptionsList::UpdateMenuFromSelections()