소스 검색

Fix rollover bug

Fixes #743
master
lvgx GitHub 4 년 전
부모
커밋
d9c0c08698
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/nnn.c

+ 2
- 2
src/nnn.c 파일 보기

@@ -5972,14 +5972,14 @@ nochange:
}
#if NCURSES_MOUSE_VERSION > 1
/* Scroll up */
if (event.bstate == BUTTON4_PRESSED && ndents && (cfg.rollover || cur)) {
if (event.bstate == BUTTON4_PRESSED && ndents && (cfg.rollover || cur >= scroll_lines)) {
move_cursor((cur + ndents - scroll_lines) % ndents, 0);
break;
}

/* Scroll down */
if (event.bstate == BUTTON5_PRESSED && ndents
&& (cfg.rollover || (cur != ndents - 1))) {
&& (cfg.rollover || (cur + scroll_lines < ndents))) {
move_cursor((cur + scroll_lines) % ndents, 0);
break;
}


불러오는 중...
취소
저장