mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Hide snapshots on empty days
This commit is contained in:
parent
4473ca745a
commit
cec3cd8523
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user