mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Fixed gGraphView settings file version check
This commit is contained in:
parent
a4cbc5e22c
commit
043a11dbf8
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user