Mercurial > hg > svgui
diff layer/TimeValueLayer.cpp @ 1550:e95cefd4aa81
Further replacements of QRect::right() with the right (arf) calculation
author | Chris Cannam |
---|---|
date | Thu, 31 Oct 2019 15:32:13 +0000 |
parents | e6362cf5ff1d |
children |
line wrap: on
line diff
--- a/layer/TimeValueLayer.cpp Thu Oct 31 15:32:01 2019 +0000 +++ b/layer/TimeValueLayer.cpp Thu Oct 31 15:32:13 2019 +0000 @@ -915,7 +915,8 @@ // Profiler profiler("TimeValueLayer::paint", true); - int x0 = rect.left(), x1 = rect.right(); + int x0 = rect.left(); + int x1 = x0 + rect.width(); sv_frame_t frame0 = v->getFrameForX(x0); sv_frame_t frame1 = v->getFrameForX(x1); if (m_derivative) --frame0;