mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 06:35:30 +00:00
Merge remote-tracking branch 'dteviot/master'
This commit is contained in:
commit
82af524a58
@ -64,29 +64,17 @@ void ContentSelectorView::ContentSelector::buildAddonView()
|
||||
void ContentSelectorView::ContentSelector::setProfileContent(const QStringList &fileList)
|
||||
{
|
||||
clearCheckStates();
|
||||
bool foundGamefile = false;
|
||||
|
||||
foreach (const QString &filepath, fileList)
|
||||
{
|
||||
if (!foundGamefile)
|
||||
const ContentSelectorModel::EsmFile *file = mContentModel->item(filepath);
|
||||
if (file && file->isGameFile())
|
||||
{
|
||||
const ContentSelectorModel::EsmFile *file = mContentModel->item(filepath);
|
||||
|
||||
foundGamefile = (file->isGameFile());
|
||||
|
||||
if (foundGamefile)
|
||||
{
|
||||
setGameFile (filepath);
|
||||
break;
|
||||
}
|
||||
setGameFile (filepath);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
/* if (!foundGameFile)
|
||||
{
|
||||
//throw gamefile error here.
|
||||
}*/
|
||||
|
||||
setCheckStates (fileList);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user