diff layer/NoteLayer.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 045063dcd2bc
line wrap: on
line diff
--- a/layer/NoteLayer.cpp	Thu Oct 31 15:32:01 2019 +0000
+++ b/layer/NoteLayer.cpp	Thu Oct 31 15:32:13 2019 +0000
@@ -719,7 +719,9 @@
 
 //    Profiler profiler("NoteLayer::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);