|
@@ -288,7 +288,7 @@ extension KMBookMarkViewController : NSTableViewDelegate,NSTableViewDataSource {
|
|
|
}
|
|
|
|
|
|
func tableViewSelectionDidChange(_ notification: Notification) {
|
|
|
- if(self.bookTableView.selectedRow > 0 && self.bookTableView.selectedRow < self.dataSource.count) {
|
|
|
+ if(self.bookTableView.selectedRow >= 0 && self.bookTableView.selectedRow < self.dataSource.count) {
|
|
|
let selectBookMark = self.dataSource[self.bookTableView.selectedRow]
|
|
|
self.listView.go(toPageIndex: selectBookMark.pageIndex, animated: true)
|
|
|
|