diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index 88c7389c..df1c03dd 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -2609,7 +2609,7 @@ void gGraphView::paintGL() if (this->isVisible()) { if (m_limbo || m_inAnimation || (something_fun && !numgraphs)) { - redrawtimer->setInterval(15); + redrawtimer->setInterval(50); redrawtimer->setSingleShot(true); redrawtimer->start(); } else { diff --git a/mainwindow.cpp b/mainwindow.cpp index 20e23185..6ed6f3ee 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -478,6 +478,15 @@ void MainWindow::on_homeButton_clicked() { ui->webView->setUrl(QUrl("qrc:/docs/index.html")); } + +QString formatTime(float time) +{ + int hours=time; + int seconds=time*3600.0; + int minutes=(seconds / 60) % 60; + seconds %= 60; + return QString().sprintf("%02i:%02i",hours,minutes); //,seconds); +} void MainWindow::on_summaryButton_clicked() { QString html=htmlHeader(); @@ -539,11 +548,11 @@ void MainWindow::on_summaryButton_clicked() html+=QString("