diff options
Diffstat (limited to 'macosx/ChapterTitles.m')
-rw-r--r-- | macosx/ChapterTitles.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/ChapterTitles.m b/macosx/ChapterTitles.m index b42309f8a..3bef60c44 100644 --- a/macosx/ChapterTitles.m +++ b/macosx/ChapterTitles.m @@ -131,7 +131,7 @@ a timer to avoid interfering with the chain of events that handles the edit. */ if( row >= 0 && row < [chapterTable numberOfRows] ) { - [chapterTable selectRow:row byExtendingSelection:NO]; + [chapterTable selectRowIndexes:[NSIndexSet indexSetWithIndex:row] byExtendingSelection:NO]; [chapterTable editColumn:column row:row withEvent:nil select:YES]; } } |