Hide snapshots on empty days

This commit is contained in:
Mark Watkins 2014-08-28 00:08:18 +10:00
parent 4473ca745a
commit cec3cd8523
2 changed files with 7 additions and 2 deletions

View File

@ -129,6 +129,7 @@ gGraph::gGraph(QString name, gGraphView *graphview, QString title, QString units
m_layers.clear(); m_layers.clear();
m_issnapshot = false;
f_miny = f_maxy = 0; f_miny = f_maxy = 0;
rmin_x = rmin_y = 0; rmin_x = rmin_y = 0;
rmax_x = rmax_y = 0; rmax_x = rmax_y = 0;
@ -216,7 +217,9 @@ bool gGraph::isSelected()
bool gGraph::isEmpty() bool gGraph::isEmpty()
{ {
if (m_issnapshot) return false; if (m_issnapshot) {
return graphView()->isEmpty();
}
bool empty = true; bool empty = true;
@ -227,6 +230,7 @@ bool gGraph::isEmpty()
} }
} }
return empty; return empty;
} }

View File

@ -2929,7 +2929,8 @@ bool gGraphView::isEmpty()
bool res = true; bool res = true;
for (int i = 0; i < m_graphs.size(); i++) { for (int i = 0; i < m_graphs.size(); i++) {
if (!m_graphs.at(i)->isEmpty()) { gGraph * graph = m_graphs.at(i);
if (!graph->isSnapshot() && !graph->isEmpty()) {
res = false; res = false;
break; break;
} }