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

Require Blender 2.82

This commit is contained in:
2020-04-14 02:52:01 -04:00
parent 906c476139
commit c17561c6b0
4 changed files with 7 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_blendMajor == 2 && m_blendMinor >= 81); }
bool isBlenderVersionOk() const { return m_blendMajor == 2 && m_blendMinor == 82; }
void updateFreeDiskSpace(const QString& path);
};