Fixed text not displaying in snapshots

This commit is contained in:
Mark Watkins 2014-04-05 12:27:47 +10:00
parent 860c67d685
commit 3134b9e92d
2 changed files with 7 additions and 1 deletions

View File

@ -3176,7 +3176,11 @@ bool gGraphView::renderGraphs()
}
quads->draw();
lines->draw();
DrawTextQue();
// can't draw snapshot text using this DrawTextQue function
// TODO: Find a better solution for detecting when in snapshot mode
if (m_graphs.size()>1)
DrawTextQue();
py=0; // start drawing at top...

View File

@ -119,7 +119,9 @@ Daily::Daily(QWidget *parent,gGraphView * shared)
int default_height=PROFILE.appearance->graphHeight();
SF=new gGraph(GraphView,STR_TR_EventFlags,STR_TR_EventFlags,default_height);
SF->setPinned(true);
ui->pinFlagsButton->setChecked(true);
FRW=new gGraph(GraphView,STR_TR_FlowRate, schema::channel[CPAP_FlowRate].fullname()+"\n"+schema::channel[CPAP_FlowRate].description()+"\n("+schema::channel[CPAP_FlowRate].units()+")",default_height);
//FRW->setPinned(true);