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

Require Blender 2.90 & other fixes

This commit is contained in:
2020-09-04 03:33:46 -04:00
parent 61dbc1628e
commit 362434bea6
3 changed files with 7 additions and 3 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 == 83; }
bool isBlenderVersionOk() const { return m_blendMajor == 2 && m_blendMinor == 90; }
void updateFreeDiskSpace(const QString& path);
};