diff options
| author | Tim E. Real <termtech@rogers.com> | 2013-05-08 08:52:52 +0000 | 
|---|---|---|
| committer | Tim E. Real <termtech@rogers.com> | 2013-05-08 08:52:52 +0000 | 
| commit | 2c1f2f49d2ac878c13f9c59d86166a62bbd7573d (patch) | |
| tree | 96bb20b3f43823fa51cf49cfa25fae49f73882ce /muse2/muse/app.cpp | |
| parent | 8a491e19e6520f2680bf51aec1ca7e2070ccaec7 (diff) | |
Yet another MAJOR audio engine and plugin/synth process chain re-write. 
And much more, see ChangeLog, May 8 2013.
Diffstat (limited to 'muse2/muse/app.cpp')
| -rw-r--r-- | muse2/muse/app.cpp | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/muse2/muse/app.cpp b/muse2/muse/app.cpp index e0212a82..ff0f7b8d 100644 --- a/muse2/muse/app.cpp +++ b/muse2/muse/app.cpp @@ -1281,7 +1281,9 @@ void MusE::loadProjectFile1(const QString& name, bool songTemplate, bool doReadM        MusEGlobal::punchinAction->setChecked(MusEGlobal::song->punchin());        MusEGlobal::punchoutAction->setChecked(MusEGlobal::song->punchout());        MusEGlobal::loopAction->setChecked(MusEGlobal::song->loop()); -      MusEGlobal::song->update(); +      // Inform the rest of the app the song changed, with all flags MINUS +      //  these flags which are already sent in the call to MusE::read() above: +      MusEGlobal::song->update(~SC_TRACK_INSERTED);        MusEGlobal::song->updatePos();        arrangerView->clipboardChanged(); // enable/disable "Paste"        arrangerView->selectionChanged(); // enable/disable "Copy" & "Paste"  | 
