diff options
| author | 2018-01-09 13:32:57 +0530 | |
|---|---|---|
| committer | 2018-01-09 13:32:57 +0530 | |
| commit | 827f7fd662265631b07189c5dd389efb9a3e7c41 (patch) | |
| tree | 03aa609e4acb365ea0ba739d65ac70a2d2d30fbb | |
| parent | 0a1776e18e9038ebd631f83aad2936af475cf49c (diff) | |
| download | nnn-827f7fd662265631b07189c5dd389efb9a3e7c41.tar.gz | |
Sufficient to use refresh() after exitcurses()
| -rw-r--r-- | nnn.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -618,7 +618,7 @@ spawn(const char *file, const char *arg1, const char *arg2, const char *dir, uch DPRINTF_D(pid); if (flag & F_NORMAL) - initcurses(); + refresh(); } } @@ -1618,7 +1618,7 @@ show_stats(char *fpath, char *fname, struct stat *sb) exitcurses(); get_output(NULL, 0, "cat", tmp, NULL, 1); unlink(tmp); - initcurses(); + refresh(); return 0; } @@ -1652,7 +1652,7 @@ show_mediainfo(char *fpath, char *arg) exitcurses(); get_output(NULL, 0, utils[cfg.metaviewer], fpath, arg, 1); - initcurses(); + refresh(); return 0; } @@ -1667,7 +1667,7 @@ handle_archive(char *fpath, char *arg, char *dir) else { exitcurses(); get_output(NULL, 0, utils[4], arg, fpath, 1); - initcurses(); + refresh(); } return 0; @@ -1781,7 +1781,7 @@ show_help(char *path) exitcurses(); get_output(NULL, 0, "cat", tmp, NULL, 1); unlink(tmp); - initcurses(); + refresh(); return 0; } @@ -2386,7 +2386,7 @@ nochange: exitcurses(); tmp = readline("chdir: "); - initcurses(); + refresh(); /* Change back to program start dir */ if (chdir(newpath) == -1) |