Minor formatting changes

This commit is contained in:
Hyunjin Song
2019-11-19 15:18:32 +09:00
parent 14f894c3ee
commit 170c8b9a34
4 changed files with 8 additions and 4 deletions

View File

@@ -75,6 +75,7 @@ public:
{
return m_pitchGroupBox;
}
GroupBox * grooveGroupBox()
{
return m_grooveGroupBox;

View File

@@ -294,7 +294,7 @@ private:
friend class InstrumentMiscView;
private slots:
void updateGroove();
void updateGroove();
};

View File

@@ -1,5 +1,5 @@
/*
* MidiSwing.cpp - Swing algo using fixed integer step adjustments that
* MidiSwing.cpp - Swing algo using fixed integer step adjustments that
* could be represented as midi.
*
* Copyright (c) 2004-2014 teknopaul <teknopaul/at/users.sourceforge.net>
@@ -55,13 +55,13 @@ int MidiSwing::isInTick(MidiTime * curStart, Note * n, Pattern * p)
int posInEigth = -1;
if (posInBeat >= 12 && posInBeat < 18)
{
{
// 1st half of second quarter
// add a 0 - 24 tick shift
posInEigth = posInBeat - 12; // 0-5
}
else if (posInBeat >= 36 && posInBeat < 42)
{
{
// 1st half of third quarter
posInEigth = posInBeat - 36; // 0-5
}

View File

@@ -1999,6 +1999,9 @@ void TrackOperationsWidget::removeTrack()
emit trackRemovalScheduled( m_trackView );
}
/*! \brief Update the trackOperationsWidget context menu
*
* For all track types, we have the Clone and Remove options.