瀏覽代碼

Fix #744

master
Arun Prakash Jana 4 年之前
父節點
當前提交
51009f8241
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: A75979F35C080412
共有 1 個檔案被更改,包括 13 行新增2 行删除
  1. +13
    -2
      src/nnn.c

+ 13
- 2
src/nnn.c 查看文件

@@ -5716,10 +5716,15 @@ static void redraw(char *path)

attroff(A_UNDERLINE | COLOR_PAIR(cfg.curctx + 1));

ncols = adjust_cols(ncols);

/* Go to first entry */
move(2, 0);
if (curscroll > 0) {
move(1, 0);
addch('^');
}

ncols = adjust_cols(ncols);
move(2, 0);

if (g_state.oldcolor) {
attron(COLOR_PAIR(cfg.curctx + 1) | A_BOLD);
@@ -5736,6 +5741,12 @@ static void redraw(char *path)
g_state.dircolor = 0;
}

/* Go to first entry */
if (i < ndents) {
move(xlines - 2, 0);
addch('v');
}

statusbar(path);
}



Loading…
取消
儲存