From 59617a3c4365510cec4c5cc5f6efcdb94ba9eba9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jacob=20St=C3=B8ren?= Date: Thu, 29 Oct 2015 14:13:44 +0100 Subject: [PATCH] (#570) Fixed grid alignment Is this due to a qwt-bug ? --- ApplicationCode/UserInterface/RiuWellLogTrackPlot.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ApplicationCode/UserInterface/RiuWellLogTrackPlot.cpp b/ApplicationCode/UserInterface/RiuWellLogTrackPlot.cpp index 35c4ea1628..f9bdfd9d97 100644 --- a/ApplicationCode/UserInterface/RiuWellLogTrackPlot.cpp +++ b/ApplicationCode/UserInterface/RiuWellLogTrackPlot.cpp @@ -144,6 +144,7 @@ void RiuWellLogTrackPlot::setDepthZoom(double minDepth, double maxDepth) void RiuWellLogTrackPlot::setXRange(double min, double max) { setAxisScale(QwtPlot::xTop, min, max); + setAxisScale(QwtPlot::xBottom, min, max); } //--------------------------------------------------------------------------------------------------