Skip to content

Commit

Permalink
Remove spaces to fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
regulus79 committed Sep 4, 2024
1 parent b2db31a commit aa773a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/clips/MidiClipView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ bool MidiClipView::splitClip(const TimePos pos)
{
// Currently, due to midi clips being required to be multiples of 1 bar in length, restrict the split pos to the nearest bar:
const TimePos roundedPos = (pos + TimePos::ticksPerBar() / 2) - (pos + TimePos::ticksPerBar() / 2) % TimePos::ticksPerBar();
setMarkerEnabled( false );
setMarkerEnabled(false);

const TimePos splitPos = m_initialClipPos + roundedPos;

Expand Down

0 comments on commit aa773a0

Please sign in to comment.