From 770dae0f6358ac2e092cfb9a3da63f53a8fb4257 Mon Sep 17 00:00:00 2001 From: Mark Liversedge Date: Sat, 1 Feb 2014 23:57:59 +0000 Subject: [PATCH] Fix ErgFilePlot xBottom Axis Fixes #750 --- src/ErgFilePlot.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ErgFilePlot.cpp b/src/ErgFilePlot.cpp index e94847e65..17c7190e4 100644 --- a/src/ErgFilePlot.cpp +++ b/src/ErgFilePlot.cpp @@ -402,6 +402,10 @@ ErgFilePlot::setData(ErgFile *ergfile) setAxisScaleDraw(QwtPlot::xBottom, (timedraw=new HourTimeScaleDraw())); setAxisScale(xBottom, (double)0, 1000 * 60 * 60, 15*60*1000); } + + // make the xBottom scale visible + enableAxis(xBottom, true); + setAxisVisible(xBottom, true); } void