[Kst] extragear/graphics/kst/kst

George Staikos staikos at kde.org
Sat Oct 22 07:55:04 CEST 2005


SVN commit 472871 by staikos:

when advancing, only advance so that the last existing sample is the last sample
shown, at most.


 M  +2 -2      kstdoc.cpp  


--- trunk/extragear/graphics/kst/kst/kstdoc.cpp #472870:472871
@@ -772,10 +772,10 @@
     n = V->reqNumFrames();
     skip = V->skip();
     doSkip = V->doSkip();
-    doAve =  V->doAve();
+    doAve = V->doAve();
     fileN = V->fileLength();
 
-    if (f0 + n > fileN) {
+    if (f0 + 2 * n > fileN) {
       f0 = fileN - n;
     } else {
       f0 += n;


More information about the Kst mailing list