Fixed gGraphView settings file version check

This commit is contained in:
Mark Watkins 2014-07-17 03:23:24 +10:00
parent a4cbc5e22c
commit 043a11dbf8

View File

@ -1968,9 +1968,8 @@ bool gGraphView::LoadSettings(QString title)
in >> t2;
if (t2 != gvversion) {
qDebug() << "gGraphView" << title << "version doesn't match";
return false;
if (t2 < gvversion) {
qDebug() << "gGraphView" << title << "settings will be upgraded.";
}
qint16 siz;