ソースを参照

Use refresh() to reflect print

master
Arun Prakash Jana 7年前
コミット
65b818b0eb
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: A75979F35C080412
1個のファイルの変更2行の追加5行の削除
  1. +2
    -5
      nnn.c

+ 2
- 5
nnn.c ファイルの表示

@@ -608,8 +608,7 @@ entrycmp(const void *va, const void *vb)
static void
printmsg(char *msg)
{
move(LINES - 1, 0);
printw("%s\n", msg);
mvprintw(LINES - 1, 0, "%s\n", msg);
}

/* Display warning as a message */
@@ -1625,10 +1624,8 @@ populate(char *path, char *oldpath, char *fltr)
return -1;

if (cfg.blkorder) {
timeout(0);
printmsg("Calculating...");
getch();
timeout(1000);
refresh();
}

ndents = dentfill(path, &dents, visible, &re);


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