From: Michal MalĂ˝ Date: Fri, 10 Oct 2014 01:02:45 +0000 (+0200) Subject: Hopefully fix graph rendering below time axis. X-Git-Tag: 0.3e~3 X-Git-Url: https://gitweb.devoid-pointer.net/?a=commitdiff_plain;h=52ccc8dcb096f611b33c1eba6022dcc95a4f624c;p=anyanka.git Hopefully fix graph rendering below time axis. --- diff --git a/signaldrawer.cpp b/signaldrawer.cpp index 9b2124b..a68ee0c 100644 --- a/signaldrawer.cpp +++ b/signaldrawer.cpp @@ -505,7 +505,7 @@ bool SignalDrawer::renderGraph(QPixmap* const target) int toXPix = relToXPix(m_gdData->ddata[i].first); int toYPix = relToYPix(m_gdData->ddata[i].second); - if (fromYPix > m_gHeight && toYPix > m_gHeight) { + if (fromYPix >= m_gHeight && toYPix >= m_gHeight) { /* Draw nothing */ } else if (toXPix == fromXPix) p.drawLine(fromXPix, (fromYPix >= m_gHeight) ? m_gHeight : fromYPix, toXPix, (toYPix >= m_gHeight) ? m_gHeight : toYPix);