Remove more global automation from MidiImport (#6605)

This commit is contained in:
Hyunjin Song
2023-01-17 21:17:38 +09:00
committed by GitHub
parent 679d63224a
commit e8e54a7ba8
4 changed files with 10 additions and 16 deletions

View File

@@ -283,7 +283,6 @@ public:
bpm_t getTempo();
AutomationClip * tempoAutomationClip() override;
AutomationTrack * globalAutomationTrack()
{
@@ -352,6 +351,11 @@ public:
return m_timeSigModel;
}
IntModel& tempoModel()
{
return m_tempoModel;
}
void exportProjectMidi(QString const & exportFileName) const;
inline void setLoadOnLaunch(bool value) { m_loadOnLaunch = value; }

View File

@@ -63,12 +63,6 @@ public:
void loadSettings( const QDomElement & _this ) override;
virtual AutomationClip * tempoAutomationClip()
{
return nullptr;
}
int countTracks( Track::TrackTypes _tt = Track::NumTrackTypes ) const;