Revision: 29146 http://sourceforge.net/p/bibdesk/svn/29146 Author: hofman Date: 2025-04-20 09:28:03 +0000 (Sun, 20 Apr 2025) Log Message: ----------- fix typo in flag name
Modified Paths: -------------- trunk/bibdesk_vendorsrc/amaxwell/FileView/FVFileView.h trunk/bibdesk_vendorsrc/amaxwell/FileView/FVFileView.m Modified: trunk/bibdesk_vendorsrc/amaxwell/FileView/FVFileView.h =================================================================== --- trunk/bibdesk_vendorsrc/amaxwell/FileView/FVFileView.h 2025-04-20 09:12:28 UTC (rev 29145) +++ trunk/bibdesk_vendorsrc/amaxwell/FileView/FVFileView.h 2025-04-20 09:28:03 UTC (rev 29146) @@ -229,7 +229,7 @@ unsigned int isEditable:1; unsigned int isMouseDown:1; unsigned int isRescaling:1; - unsigned int scheduledEndFatScroling:1; + unsigned int scheduledEndFastScroling:1; unsigned int updatingFromSlider:1; unsigned int needsReload:1; unsigned int controllingSharedPreviewer:1; Modified: trunk/bibdesk_vendorsrc/amaxwell/FileView/FVFileView.m =================================================================== --- trunk/bibdesk_vendorsrc/amaxwell/FileView/FVFileView.m 2025-04-20 09:12:28 UTC (rev 29145) +++ trunk/bibdesk_vendorsrc/amaxwell/FileView/FVFileView.m 2025-04-20 09:28:03 UTC (rev 29146) @@ -351,7 +351,7 @@ _lastMouseDownLocInView = NSZeroPoint; // the next two are set to an illegal combination to indicate that no drop is in progress _fvFlags.isRescaling = NO; - _fvFlags.scheduledEndFatScroling = NO; + _fvFlags.scheduledEndFastScroling = NO; _fvFlags.controllingSharedPreviewer = NO; _fvFlags.controllingQLPreviewPanel = NO; _selectionIndexes = [[NSIndexSet alloc] init]; @@ -2407,7 +2407,7 @@ // redraw at full quality after fast scrolling - (void)_viewDidEndFastScrolling { [_contentView setNeedsDisplay:YES]; - _fvFlags.scheduledEndFatScroling = NO; + _fvFlags.scheduledEndFastScroling = NO; } enum { FVDrawIcon = 1<<0, FVDrawText = 1<<1, FVDrawSelected = 1<<2 }; @@ -2443,8 +2443,8 @@ BOOL useFastDrawingPath = (isResizing || _fvFlags.isRescaling || ([self _isFastScrolling] && _iconSize.height <= 256)); // redraw at high quality after scrolling - if (useFastDrawingPath && NO == _fvFlags.scheduledEndFatScroling && [self _isFastScrolling]) { - _fvFlags.scheduledEndFatScroling = YES; + if (useFastDrawingPath && NO == _fvFlags.scheduledEndFastScroling && [self _isFastScrolling]) { + _fvFlags.scheduledEndFastScroling = YES; [self performSelector:@selector(_viewDidEndFastScrolling) withObject:nil afterDelay:0 inModes:[NSArray arrayWithObject:NSDefaultRunLoopMode]]; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. _______________________________________________ Bibdesk-commit mailing list Bibdesk-commit@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/bibdesk-commit