From adaaf10789878ca8a694d4910311de1dc03f046b Mon Sep 17 00:00:00 2001 From: Marc Sabatella Date: Mon, 22 Jun 2015 12:42:22 -0600 Subject: [PATCH] fix #66241: note offset not preserved for tab --- libmscore/note.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libmscore/note.cpp b/libmscore/note.cpp index d53d242814f3..e192f31f2f81 100644 --- a/libmscore/note.cpp +++ b/libmscore/note.cpp @@ -1673,9 +1673,10 @@ void Note::layout() void Note::layout2() { - // this is now done in Score::layoutChords3() + // for standard staves this is done in Score::layoutChords3() // so that the results are available there - // adjustReadPos(); + if (staff()->isTabStaff()) + adjustReadPos(); int dots = chord()->dots(); if (dots) {