diff options
author | Robert Jonsson <spamatica@gmail.com> | 2011-02-14 22:07:25 +0000 |
---|---|---|
committer | Robert Jonsson <spamatica@gmail.com> | 2011-02-14 22:07:25 +0000 |
commit | aec6829af3ae4a7925ac5926f033702226db6a55 (patch) | |
tree | dbc2df0c6e506f1fbea2696ee3484729553b28ce | |
parent | 1371ee8ba22423680d84623997f07b368a342164 (diff) |
mixer slider updates canvas
-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 } //--------------------------------------------------------- |