Revision: 12938
          http://sourceforge.net/p/skim-app/code/12938
Author:   hofman
Date:     2022-06-24 09:40:03 +0000 (Fri, 24 Jun 2022)
Log Message:
-----------
check new value for positive value

Modified Paths:
--------------
    trunk/SKPDFView.m

Modified: trunk/SKPDFView.m
===================================================================
--- trunk/SKPDFView.m   2022-06-22 16:19:30 UTC (rev 12937)
+++ trunk/SKPDFView.m   2022-06-24 09:40:03 UTC (rev 12938)
@@ -1014,7 +1014,7 @@
 #pragma mark Pacer
 
 - (void)setPacerSpeed:(CGFloat)speed {
-    if (pacerSpeed > 0.0) {
+    if (speed > 0.0) {
         pacerSpeed = speed;
         [self updatePacer];
         [[NSUserDefaults standardUserDefaults] setDouble:speed 
forKey:SKPacerSpeedKey];

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
Skim-app-commit mailing list
Skim-app-commit@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/skim-app-commit

Reply via email to