diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-05-06 20:37:18 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-05-06 20:37:18 -0700 |
commit | 4ecdc68f776c96e14405f269aad1dce5a15bef8a (patch) | |
tree | a6b5d5054dfcff5f4c7dedee9bf911eda8133991 | |
parent | b1484760fe0c82f8c787af7f1ebca49bcb522190 (diff) | |
download | pw-4ecdc68f776c96e14405f269aad1dce5a15bef8a.tar.gz pw-4ecdc68f776c96e14405f269aad1dce5a15bef8a.tar.bz2 pw-4ecdc68f776c96e14405f269aad1dce5a15bef8a.zip |
Fix lagging redraw upon resume from background.
This was a regression in this morning's refactoring.
-rw-r--r-- | pw.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1178,7 +1178,7 @@ int main(int argc, char **argv) ttyset(ttyfd, &tty_new); for (int i = 0; i < pw.nlines; i++) puts(""); - pw.stat |= force; + pw.stat |= stat_force; redraw(&pw); } else { if ((pw.stat & stat_eof)) { |