diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index 31a31003..eea22b24 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -1710,22 +1710,20 @@ void gGraphView::scrollbarValueChanged(int val) } void gGraphView::ResetBounds(bool refresh) //short group) { + qint64 m1=0,m2=0; for (int i=0;iResetBounds(); + if (!m1 || m_graphs[i]->min_xmin_x; + if (!m2 || m_graphs[i]->max_x>m2) m2=m_graphs[i]->max_x; } if (PROFILE["LinkGroups"].toBool()) { - qint64 m1=0,m2=0; - for (int i=0;imin_xmin_x; - if (!m2 || m_graphs[i]->max_x>m2) m2=m_graphs[i]->max_x; - } for (int i=0;iSetMinX(m1); m_graphs[i]->SetMaxX(m2); } } - qint64 xx=m_graphs[0]->max_x-m_graphs[0]->min_x; + qint64 xx=m_graphs[0]->max_x - m_graphs[0]->min_x; double d=xx/86400000L; int h=xx/3600000L; int m=(xx/60000) % 60; diff --git a/mainwindow.cpp b/mainwindow.cpp index 7821f494..809b795a 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -106,11 +106,14 @@ MainWindow::MainWindow(QWidget *parent) : ui->logText->hide(); } + // TODO: Move all this to profile creation. + // This speeds up the second part of importing craploads.. later it will speed up the first part too. if (!PROFILE.Exists("EnableMultithreading")) PROFILE["EnableMultithreading"]=QThread::idealThreadCount()>1; + if (!PROFILE.Exists("MemoryHog")) PROFILE["MemoryHog"]=false; if (!PROFILE.Exists("EnableGraphSnapshots")) PROFILE["EnableGraphSnapshots"]=false; - if (!PROFILE.Exists("LinkGroups")) PROFILE["LinkGroups"]=true; + if (!PROFILE.Exists("LinkGroups")) PROFILE["LinkGroups"]=false; if (!PROFILE.Exists("AlwaysShowOverlayBars")) PROFILE["AlwaysShowOverlayBars"]=0; if (!PROFILE.Exists("UseAntiAliasing")) PROFILE["UseAntiAliasing"]=false; if (!PROFILE.Exists("IntentionalLeak")) PROFILE["IntentionalLeak"]=(double)0.0;