mirror of https://github.com/AxioDL/metaforce.git
Fix missed references to Blender 2.90+
This commit is contained in:
parent
fb7f0011b9
commit
ac5745429c
|
@ -365,7 +365,7 @@ void MainWindow::enableOperations() {
|
|||
}
|
||||
|
||||
if (!m_ui->sysReqTable->isBlenderVersionOk()) {
|
||||
insertContinueNote(tr("Blender 2.83 must be installed. Please download via Steam or blender.org."));
|
||||
insertContinueNote(tr("Blender 2.90 or greater must be installed. Please download via Steam or blender.org."));
|
||||
} else if (m_ui->launchBtn->isEnabled()) {
|
||||
insertContinueNote(tr("Package complete - Press 'Launch' to start URDE."));
|
||||
} else if (m_ui->packageBtn->isEnabled()) {
|
||||
|
|
|
@ -200,7 +200,7 @@ QVariant SysReqTableModel::data(const QModelIndex& index, int role) const {
|
|||
return {};
|
||||
#endif
|
||||
case 5:
|
||||
return tr("Blender 2.90");
|
||||
return tr("Blender 2.90+");
|
||||
}
|
||||
} else if (index.column() == 1) {
|
||||
/* Your System */
|
||||
|
|
Loading…
Reference in New Issue