From 3134b9e92d3f3b33dc90a5ad2f73f15b29226c56 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sat, 5 Apr 2014 12:27:47 +1000 Subject: [PATCH] Fixed text not displaying in snapshots --- sleepyhead/Graphs/gGraphView.cpp | 6 +++++- sleepyhead/daily.cpp | 2 ++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/sleepyhead/Graphs/gGraphView.cpp b/sleepyhead/Graphs/gGraphView.cpp index dc2ce6fb..18838c2f 100644 --- a/sleepyhead/Graphs/gGraphView.cpp +++ b/sleepyhead/Graphs/gGraphView.cpp @@ -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... diff --git a/sleepyhead/daily.cpp b/sleepyhead/daily.cpp index 74341f22..341ad451 100644 --- a/sleepyhead/daily.cpp +++ b/sleepyhead/daily.cpp @@ -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);