浏览代码

Snap to edges in no rollover multiline scroll mode

master
lvgx GitHub 4 年前
父节点
当前提交
d1d4c4ad22
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 1 个文件被更改,包括 10 次插入4 次删除
  1. +10
    -4
      src/nnn.c

+ 10
- 4
src/nnn.c 查看文件

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

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


||||||
x
 
000:0
正在加载...
取消
保存