Turn off LinkGroups by default

This commit is contained in:
Mark Watkins 2011-10-08 23:56:33 +10:00
parent 837c6a2b0b
commit 29dd876c11
2 changed files with 8 additions and 7 deletions

View File

@ -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;i<m_graphs.size();i++) {
m_graphs[i]->ResetBounds();
if (!m1 || m_graphs[i]->min_x<m1) m1=m_graphs[i]->min_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;i<m_graphs.size();i++) {
if (!m1 || m_graphs[i]->min_x<m1) m1=m_graphs[i]->min_x;
if (!m2 || m_graphs[i]->max_x>m2) m2=m_graphs[i]->max_x;
}
for (int i=0;i<m_graphs.size();i++) {
m_graphs[i]->SetMinX(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;

View File

@ -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;