diff options
| -rw-r--r-- | muse2/ChangeLog | 1 | ||||
| -rw-r--r-- | muse2/muse/mixer/astrip.cpp | 2 | 
2 files changed, 3 insertions, 0 deletions
diff --git a/muse2/ChangeLog b/muse2/ChangeLog index 75f9581e..eb9ffab2 100644 --- a/muse2/ChangeLog +++ b/muse2/ChangeLog @@ -5,6 +5,7 @@             * select color in menu             * offset bug, can now edit automation although it's scrolled down             TODO redrawing issues when using slider automation for instance. +        - mixer slider now updates canvas to get automation updated (rj)  13.02.2011:          - restore toolbar locations for main window and editors (rj)          - fixed some layout issues in general settings (rj) diff --git a/muse2/muse/mixer/astrip.cpp b/muse2/muse/mixer/astrip.cpp index 62695823..1ed476ab 100644 --- a/muse2/muse/mixer/astrip.cpp +++ b/muse2/muse/mixer/astrip.cpp @@ -432,6 +432,8 @@ void AudioStrip::volumeChanged(double val)        volume = vol;        audio->msgSetVolume((AudioTrack*)track, vol);        ((AudioTrack*)track)->recordAutomation(AC_VOLUME, vol); + +      song->update(SC_TRACK_MODIFIED); // for graphical automation update        }  //---------------------------------------------------------  | 
