mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Fixed text not displaying in snapshots
This commit is contained in:
parent
860c67d685
commit
3134b9e92d
@ -3176,7 +3176,11 @@ bool gGraphView::renderGraphs()
|
|||||||
}
|
}
|
||||||
quads->draw();
|
quads->draw();
|
||||||
lines->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...
|
py=0; // start drawing at top...
|
||||||
|
|
||||||
|
@ -119,7 +119,9 @@ Daily::Daily(QWidget *parent,gGraphView * shared)
|
|||||||
|
|
||||||
int default_height=PROFILE.appearance->graphHeight();
|
int default_height=PROFILE.appearance->graphHeight();
|
||||||
SF=new gGraph(GraphView,STR_TR_EventFlags,STR_TR_EventFlags,default_height);
|
SF=new gGraph(GraphView,STR_TR_EventFlags,STR_TR_EventFlags,default_height);
|
||||||
|
|
||||||
SF->setPinned(true);
|
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=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);
|
//FRW->setPinned(true);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user