浏览代码

Do a complete erase

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

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

@@ -4938,15 +4938,14 @@ static void redraw(char *path)


DPRINTF_S(__FUNCTION__); DPRINTF_S(__FUNCTION__);


/* Go to first line */ /* Clear screen */
move(0, 0); erase();


/* Enforce scroll/cursor invariants */ /* Enforce scroll/cursor invariants */
move_cursor(cur, 1); move_cursor(cur, 1);


/* Fail redraw if < than 10 columns, context info prints 10 chars */ /* Fail redraw if < than 10 columns, context info prints 10 chars */
if (ncols < MIN_DISPLAY_COLS) { if (ncols < MIN_DISPLAY_COLS) {
clrtobot();
printmsg(messages[MSG_FEW_COLUMNS]); printmsg(messages[MSG_FEW_COLUMNS]);
return; return;
} }
@@ -4998,8 +4997,8 @@ static void redraw(char *path)


attroff(A_UNDERLINE); attroff(A_UNDERLINE);


/* Clear everthing till first entry */ /* Go to first entry */
addstr("\n\n"); move(2, 0);


ncols = adjust_cols(ncols); ncols = adjust_cols(ncols);


@@ -5016,9 +5015,6 @@ static void redraw(char *path)
cfg.dircolor = 0; cfg.dircolor = 0;
} }


/* Clear from last entry to end */
clrtobot();

statusbar(path); statusbar(path);
} }




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