traverso-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Traverso-commit] traverso src/commands/MoveClip.cpp src/traverso...


From: Remon Sijrier
Subject: [Traverso-commit] traverso src/commands/MoveClip.cpp src/traverso...
Date: Tue, 01 May 2007 23:29:25 +0000

CVSROOT:        /sources/traverso
Module name:    traverso
Changes by:     Remon Sijrier <r_sijrier>       07/05/01 23:29:25

Modified files:
        src/commands   : MoveClip.cpp 
        src/traverso/songcanvas: AudioClipView.cpp 
        .              : TODO 

Log message:
        * only set MoveClip valid if we really moved!

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/traverso/src/commands/MoveClip.cpp?cvsroot=traverso&r1=1.35&r2=1.36
http://cvs.savannah.gnu.org/viewcvs/traverso/src/traverso/songcanvas/AudioClipView.cpp?cvsroot=traverso&r1=1.54&r2=1.55
http://cvs.savannah.gnu.org/viewcvs/traverso/TODO?cvsroot=traverso&r1=1.5&r2=1.6

Patches:
Index: src/commands/MoveClip.cpp
===================================================================
RCS file: /sources/traverso/traverso/src/commands/MoveClip.cpp,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -b -r1.35 -r1.36
--- src/commands/MoveClip.cpp   25 Apr 2007 13:35:36 -0000      1.35
+++ src/commands/MoveClip.cpp   1 May 2007 23:29:25 -0000       1.36
@@ -205,6 +205,10 @@
                m_clip->set_left_edge(m_oldOppositeEdge);
        }
        
+       if (m_originTrack == m_targetTrack &&  m_posDiff == 0 && !(m_actionType 
== "copy")) {
+               return -1;
+       }
+       
        return 1;
 }
 

Index: src/traverso/songcanvas/AudioClipView.cpp
===================================================================
RCS file: /sources/traverso/traverso/src/traverso/songcanvas/AudioClipView.cpp,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -b -r1.54 -r1.55
--- src/traverso/songcanvas/AudioClipView.cpp   30 Apr 2007 17:50:17 -0000      
1.54
+++ src/traverso/songcanvas/AudioClipView.cpp   1 May 2007 23:29:25 -0000       
1.55
@@ -749,6 +749,7 @@
        }
        
        m_dragging = dragging;
+       update();
 }
 
 Command * AudioClipView::set_audio_file()

Index: TODO
===================================================================
RCS file: /sources/traverso/traverso/TODO,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- TODO        24 Apr 2007 16:55:02 -0000      1.5
+++ TODO        1 May 2007 23:29:25 -0000       1.6
@@ -1,8 +1,12 @@
 TOBEDONE FOR 0.40.0
 
-* when changing the width of fades, the cursor should remain static (as in 
gain)
+* FadeView merging code messes up start of clip when fade lenght is very short 
(1 or even 0 pixels)
+
+* switching to effect mode crashes with 0 tracks
 
-* Curves should have a default (first) node which is not allowed to be 
removed, or moved horizontally!!!
+* Curve copy should not use the same id!!!!!!
+
+* when changing the width of fades, the cursor should remain static (as in 
gain)
 
 * Audible glitch when playing over a split point in a splitted audioclip :-( 
:-( :-(
 
@@ -12,3 +16,6 @@
 
 Less important:
 * horizontal zooming with playhead animated causes 2 paints one at start, one 
at real pos during play!
\ No newline at end of file
+
+* Painting last curve nodes has artifacts, 'fixed' by populating polygon with 
as many points as there are
+  pixels. This should get a real fix!!
\ No newline at end of file




reply via email to

[Prev in Thread] Current Thread [Next in Thread]