2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 00:27:42 +00:00

Require Blender 2.83

This commit is contained in:
2020-06-13 20:09:17 -04:00
parent 45fe93ee94
commit 0dd67e0662
5 changed files with 5 additions and 6 deletions

View File

@@ -31,7 +31,7 @@ public:
int columnCount(const QModelIndex& parent = QModelIndex()) const override;
QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override;
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
bool isBlenderVersionOk() const { return m_blendMajor == 2 && m_blendMinor == 82; }
bool isBlenderVersionOk() const { return m_blendMajor == 2 && m_blendMinor == 83; }
void updateFreeDiskSpace(const QString& path);
};