Fix graphView scale glitch when hiding graphs

This commit is contained in:
Mark Watkins 2011-11-28 02:35:17 +10:00
parent 263530746f
commit 3109d7e5a9
2 changed files with 3 additions and 0 deletions

View File

@ -2581,6 +2581,7 @@ bool gGraphView::LoadSettings(QString title)
} }
f.close(); f.close();
updateScale();
return true; return true;
} }

View File

@ -495,6 +495,7 @@ void PreferencesDialog::on_graphModel_changed(QStandardItem * item)
} }
} }
gv->updateScale();
// qDebug() << name << checked; // qDebug() << name << checked;
} }
@ -621,6 +622,7 @@ void PreferencesDialog::on_resetGraphButton_clicked()
g->setRecMinY(0); g->setRecMinY(0);
g->setVisible(true); g->setVisible(true);
} }
gv[j]->updateScale();
} }
} }
resetGraphModel(); resetGraphModel();