Revision: 28796
          http://sourceforge.net/p/bibdesk/svn/28796
Author:   hofman
Date:     2024-02-22 00:00:51 +0000 (Thu, 22 Feb 2024)
Log Message:
-----------
invert condition

Modified Paths:
--------------
    trunk/bibdesk_vendorsrc/amaxwell/FileView/FVFileView.m

Modified: trunk/bibdesk_vendorsrc/amaxwell/FileView/FVFileView.m
===================================================================
--- trunk/bibdesk_vendorsrc/amaxwell/FileView/FVFileView.m      2024-02-21 
23:59:42 UTC (rev 28795)
+++ trunk/bibdesk_vendorsrc/amaxwell/FileView/FVFileView.m      2024-02-22 
00:00:51 UTC (rev 28796)
@@ -3208,7 +3208,7 @@
     if ([chars length] == 0) {
         // no character, so pass it to the next responder
         [super keyDown:event];
-    } else if ([chars characterAtIndex:0] != 0x0020) {
+    } else if ([chars characterAtIndex:0] == 0x0020) {
         if (([event modifierFlags] & NSEventModifierFlagShift) != 0)
             [[self enclosingScrollView] pageUp:self];
         else

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



_______________________________________________
Bibdesk-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bibdesk-commit

Reply via email to