diff options
Diffstat (limited to 'archivemodel.cpp')
-rw-r--r-- | archivemodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archivemodel.cpp b/archivemodel.cpp index 212c60d..388833d 100644 --- a/archivemodel.cpp +++ b/archivemodel.cpp @@ -759,7 +759,7 @@ QVariant ArchiveFilesModel::data(const QModelIndex &index, int role) const { } if(col == Size){ qint64 size = item->data(Size).toInt(); - qint64 fMax = Q_INT64_C(1024 * 1024 * 1024 * 4); + qint64 fMax = DVDSIZE; if(size < fMax){ return QBrush(Qt::green); }else{ |