summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libs/canvas/note.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/canvas/note.cc b/libs/canvas/note.cc
index 58431bdf6f..8b34caf1c8 100644
--- a/libs/canvas/note.cc
+++ b/libs/canvas/note.cc
@@ -78,8 +78,8 @@ Note::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) const
self.y1 = self.y0 + center + 2;
self.y0 = self.y0 + center - 1;
const double width = (self.x1 - self.x0) - (2 * outline_width());
- self.x0 = self.x0 + outline_width()+1;
- self.x1 = self.x0 + ((width-2) * _velocity);
+ self.x0 = self.x0 + outline_width();
+ self.x1 = self.x0 + (width * _velocity);
const Rect draw = self.intersection (area);