Mercurial > hg > svgui
diff layer/TextLayer.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/TextLayer.cpp Thu Oct 31 15:32:01 2019 +0000 +++ b/layer/TextLayer.cpp Thu Oct 31 15:32:13 2019 +0000 @@ -299,7 +299,9 @@ // Profiler profiler("TextLayer::paint", true); - int x0 = rect.left(), x1 = rect.right(); + int x0 = rect.left(); + int x1 = x0 + rect.width(); + int overlap = ViewManager::scalePixelSize(150); sv_frame_t frame0 = v->getFrameForX(x0 - overlap); sv_frame_t frame1 = v->getFrameForX(x1 + overlap);