From 08a4bbe08e56ab707fdee1c6ed306018acf53398 Mon Sep 17 00:00:00 2001 From: areff Date: Mon, 18 Feb 2008 19:37:32 +0000 Subject: [PATCH] Fixed my own sillyness in scroller code - needs fixing. --- Playlist/PlaylistView.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Playlist/PlaylistView.m b/Playlist/PlaylistView.m index c6ac45e64..d4fe92298 100644 --- a/Playlist/PlaylistView.m +++ b/Playlist/PlaylistView.m @@ -258,7 +258,7 @@ - (IBAction)scrollToCurrentEntry:(id)sender { - [self scrollRowToVisible:[(NSNumber *)[[playlistController currentEntry] index] intValue]-10]; + [self scrollRowToVisible:[(NSNumber *)[[playlistController currentEntry] index] intValue]]; [self selectRow:[(NSNumber *)[[playlistController currentEntry] index] intValue] byExtendingSelection:NO]; }