From e593e0d9c9842a98dd75cbafa7209cfb64a16ddd Mon Sep 17 00:00:00 2001 From: laturetab Date: Fri, 14 May 2021 16:15:28 +0200 Subject: [PATCH] Fix #320126: Grace note slash layout This will fix 2 bugs - grace notes slashes will now show up in TAB-COMMON and the slashes will no longer be stranded above the staff when switching between TAB-COMMON and TAB-FULL. Backport of #8137 / #8106 (both closed meanwhile) to 3.x --- libmscore/chord.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libmscore/chord.cpp b/libmscore/chord.cpp index 33d18923726f7..243a1d6eb9833 100644 --- a/libmscore/chord.cpp +++ b/libmscore/chord.cpp @@ -2304,6 +2304,8 @@ void Chord::layoutTablature() p.rx() -= _stem->width(); } _hook->setPos(p); + if (_stemSlash) + _stemSlash->layout(); } } }