Minor formatting changes
This commit is contained in:
@@ -75,6 +75,7 @@ public:
|
||||
{
|
||||
return m_pitchGroupBox;
|
||||
}
|
||||
|
||||
GroupBox * grooveGroupBox()
|
||||
{
|
||||
return m_grooveGroupBox;
|
||||
|
||||
@@ -294,7 +294,7 @@ private:
|
||||
friend class InstrumentMiscView;
|
||||
|
||||
private slots:
|
||||
void updateGroove();
|
||||
void updateGroove();
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user