Kaynağa Gözat

Fix rollover bug (#747)

* Fix rollover bug

Fixes #743

* Snap to edges in no rollover multiline scroll mode

* Style fix
master
lvgx GitHub 4 yıl önce
ebeveyn
işleme
78e576ae24
Veri tabanında bu imza için bilinen anahtar bulunamadı GPG Anahtar Kimliği: 4AEE18F83AFDEB23
1 değiştirilmiş dosya ile 8 ekleme ve 2 silme
  1. +8
    -2
      src/nnn.c

+ 8
- 2
src/nnn.c Dosyayı Görüntüle

@@ -5973,14 +5973,20 @@ nochange:
#if NCURSES_MOUSE_VERSION > 1
/* Scroll up */
if (event.bstate == BUTTON4_PRESSED && ndents && (cfg.rollover || cur)) {
move_cursor((cur + ndents - scroll_lines) % ndents, 0);
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 != ndents - 1))) {
move_cursor((cur + scroll_lines) % ndents, 0);
if (!cfg.rollover && cur >= ndents - scroll_lines)
move_cursor(ndents-1, 0);
else
move_cursor((cur + scroll_lines) % ndents, 0);
break;
}
#endif


Yükleniyor…
İptal
Kaydet