Update of /cvsroot/audacity/audacity-src/src
In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv32173/src

Modified Files:
        TrackPanel.cpp 
Log Message:
Fix for 'vertical lines on waveform display' drawing bug reported by Steve.
Now all visible tracks are refreshed when the sliders are adjusted.



Index: TrackPanel.cpp
===================================================================
RCS file: /cvsroot/audacity/audacity-src/src/TrackPanel.cpp,v
retrieving revision 1.470
retrieving revision 1.471
diff -u -d -r1.470 -r1.471
--- TrackPanel.cpp      28 Jul 2009 17:37:34 -0000      1.470
+++ TrackPanel.cpp      31 Jul 2009 16:39:34 -0000      1.471
@@ -3553,7 +3553,11 @@
       #endif
    }
 
-   RefreshTrack(mCapturedTrack);
+   VisibleTrackIterator iter(GetProject());
+   for (Track *t = iter.First(); t; t = iter.Next())
+   {
+      RefreshTrack(t);
+   }
 
    if (event.ButtonUp()) {
       MakeParentPushState(pan ? _("Moved pan slider") : _("Moved gain slider"),


------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Audacity-cvs mailing list
Audacity-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/audacity-cvs

Reply via email to