diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index da7b3044..f60bf377 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -1867,9 +1867,11 @@ void gGraphView::ResetBounds(bool refresh) //short group) { Q_UNUSED(refresh) qint64 m1=0,m2=0; + gGraph *g; for (int i=0;iResetBounds(); if (!m_graphs[i]->min_x) continue; + g=m_graphs[i]; if (!m1 || m_graphs[i]->min_xmin_x; if (!m2 || m_graphs[i]->max_x>m2) m2=m_graphs[i]->max_x; } @@ -1880,7 +1882,9 @@ void gGraphView::ResetBounds(bool refresh) //short group) m_graphs[i]->SetMaxX(m2); } } - qint64 xx=m_graphs[0]->max_x - m_graphs[0]->min_x; + if (!g) g=m_graphs[0]; + + qint64 xx=g->max_x - g->min_x; double d=xx/86400000L; int h=xx/3600000L; int m=(xx/60000) % 60; @@ -1999,7 +2003,6 @@ void gGraphView::paintGL() if (width()<=0) return; if (height()<=0) return; - glClearColor(255,255,255,255); //glClearDepth(1); glClear(GL_COLOR_BUFFER_BIT);// | GL_DEPTH_BUFFER_BIT); @@ -2410,8 +2413,10 @@ void gGraphView::keyPressEvent(QKeyEvent * event) gGraph *g; for (int i=0;igroup()==0) { - g=m_graphs[i]; - break; + if (!m_graphs[i]->isEmpty()) { + g=m_graphs[i]; + break; + } } } if (!g) return;