Skip to content

Commit

Permalink
fix #24769
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanPudashkin committed Sep 17, 2024
1 parent cc6fe42 commit 052c534
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/notation/view/abstractnotationpaintview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1487,7 +1487,7 @@ void AbstractNotationPaintView::setPlaybackCursorItem(QQuickItem* cursor)
m_playbackCursorItem = cursor;

if (m_playbackCursorItem) {
m_playbackCursorItem->setVisible(false);
m_playbackCursorItem->setVisible(playbackController()->isPlaying());
m_playbackCursorItem->setEnabled(false); // ignore mouse & keyboard events
m_playbackCursorItem->setProperty("color", configuration()->playbackCursorColor());

Expand Down

0 comments on commit 052c534

Please sign in to comment.