From fc67f6f19a758a40349997d13e19ff50bc39b476 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Mon, 27 Jun 2016 20:29:59 +0200 Subject: [PATCH] Fixed broken check --- src/graphview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphview.cpp b/src/graphview.cpp index 4792ac99..1cd4ab78 100644 --- a/src/graphview.cpp +++ b/src/graphview.cpp @@ -305,7 +305,7 @@ void GraphView::updateSliderInfo() { _sliderInfo->setVisible(_graphs.size() == 1); - if (!_slider->isVisible()) + if (!_sliderInfo->isVisible()) return; const QPainterPath &path = _graphs.at(0)->path();