I misunderstood dialog_prgbox() - fix it.

This commit is contained in:
Jordan K. Hubbard 1994-11-05 23:56:40 +00:00
parent a3b33372b9
commit 9d8db7f2f4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4181

View File

@ -179,6 +179,6 @@ ShowFile(char *filename, char *header)
}
dialog_clear();
sprintf(buf, "/stand/gzip -c -d %s", filename);
dialog_prgbox(header, buf, LINES-1, COLS);
dialog_prgbox(header, buf, LINES-1, COLS, TRUE, TRUE);
dialog_clear();
}