Fix window not resized when receive signal
This commit is contained in:
parent
4b026c244e
commit
3c005f84f9
1 changed files with 2 additions and 1 deletions
3
ccc.c
3
ccc.c
|
@ -188,7 +188,7 @@ int main(int argc, char **argv)
|
||||||
|
|
||||||
getcwd(cwd, PATH_MAX);
|
getcwd(cwd, PATH_MAX);
|
||||||
populate_files(cwd, 0, &files);
|
populate_files(cwd, 0, &files);
|
||||||
handle_sigwinch(-1);
|
get_window_size(&rows, &cols);
|
||||||
|
|
||||||
if (to_open_file) {
|
if (to_open_file) {
|
||||||
sel_file = arraylist_search(files, argv_cp, 1);
|
sel_file = arraylist_search(files, argv_cp, 1);
|
||||||
|
@ -215,6 +215,7 @@ void keybinding(void)
|
||||||
void handle_sigwinch(int ignore)
|
void handle_sigwinch(int ignore)
|
||||||
{
|
{
|
||||||
get_window_size(&rows, &cols);
|
get_window_size(&rows, &cols);
|
||||||
|
list_files();
|
||||||
}
|
}
|
||||||
|
|
||||||
void cleanup(void)
|
void cleanup(void)
|
||||||
|
|
Loading…
Reference in a new issue