ソースを参照

Include lines calculation in redraw

master
lostd lostd 10年前
コミット
4e818a3980
1個のファイルの変更4行の追加1行の削除
  1. +4
    -1
      noice.c

+ 4
- 1
noice.c ファイルの表示

@@ -214,8 +214,11 @@ begin:
qsort(dents, n, sizeof(*dents), dentcmp);

for (;;) {
int nlines = MIN(LINES - 4, n);
int nlines;

redraw:
nlines = MIN(LINES - 4, n);

/* Clean screen */
erase();



読み込み中…
キャンセル
保存