mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 20:01:27 +00:00
Sufficient to use refresh() after exitcurses()
This commit is contained in:
parent
0a1776e18e
commit
827f7fd662
12
nnn.c
12
nnn.c
|
@ -618,7 +618,7 @@ spawn(const char *file, const char *arg1, const char *arg2, const char *dir, uch
|
||||||
|
|
||||||
DPRINTF_D(pid);
|
DPRINTF_D(pid);
|
||||||
if (flag & F_NORMAL)
|
if (flag & F_NORMAL)
|
||||||
initcurses();
|
refresh();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1618,7 +1618,7 @@ show_stats(char *fpath, char *fname, struct stat *sb)
|
||||||
exitcurses();
|
exitcurses();
|
||||||
get_output(NULL, 0, "cat", tmp, NULL, 1);
|
get_output(NULL, 0, "cat", tmp, NULL, 1);
|
||||||
unlink(tmp);
|
unlink(tmp);
|
||||||
initcurses();
|
refresh();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1652,7 +1652,7 @@ show_mediainfo(char *fpath, char *arg)
|
||||||
|
|
||||||
exitcurses();
|
exitcurses();
|
||||||
get_output(NULL, 0, utils[cfg.metaviewer], fpath, arg, 1);
|
get_output(NULL, 0, utils[cfg.metaviewer], fpath, arg, 1);
|
||||||
initcurses();
|
refresh();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1667,7 +1667,7 @@ handle_archive(char *fpath, char *arg, char *dir)
|
||||||
else {
|
else {
|
||||||
exitcurses();
|
exitcurses();
|
||||||
get_output(NULL, 0, utils[4], arg, fpath, 1);
|
get_output(NULL, 0, utils[4], arg, fpath, 1);
|
||||||
initcurses();
|
refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -1781,7 +1781,7 @@ show_help(char *path)
|
||||||
exitcurses();
|
exitcurses();
|
||||||
get_output(NULL, 0, "cat", tmp, NULL, 1);
|
get_output(NULL, 0, "cat", tmp, NULL, 1);
|
||||||
unlink(tmp);
|
unlink(tmp);
|
||||||
initcurses();
|
refresh();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2386,7 +2386,7 @@ nochange:
|
||||||
|
|
||||||
exitcurses();
|
exitcurses();
|
||||||
tmp = readline("chdir: ");
|
tmp = readline("chdir: ");
|
||||||
initcurses();
|
refresh();
|
||||||
|
|
||||||
/* Change back to program start dir */
|
/* Change back to program start dir */
|
||||||
if (chdir(newpath) == -1)
|
if (chdir(newpath) == -1)
|
||||||
|
|
Loading…
Reference in a new issue