Skip to content

Commit

Permalink
fix #205946: The last entered extra bass in lutes > to 7 courses is s…
Browse files Browse the repository at this point in the history
…hown when launching the playback
  • Loading branch information
lasconic committed Feb 23, 2018
1 parent a96c757 commit 403ea34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mscore/textcursor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ void PositionCursor::paint(QPainter* p)
p->fillRect(_rect, color());
int track = _sv->score()->inputTrack();
Staff* staff = _sv->score()->staff(track2staff(track));
if (staff) {
if (staff && _sv->score()->noteEntryMode()) {
StaffType* staffType = staff->staffType();
if (staffType && staffType->group() == StaffGroup::TAB)
staffType->drawInputStringMarks(p, _sv->score()->inputState().string(),
Expand Down

0 comments on commit 403ea34

Please sign in to comment.