aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--st.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/st.c b/st.c
index c9ef574..b37069c 100644
--- a/st.c
+++ b/st.c
@@ -2674,7 +2674,9 @@ tresize(int col, int row) {
2674 if(0 < col && minrow < row) { 2674 if(0 < col && minrow < row) {
2675 tclearregion(0, minrow, col - 1, row - 1); 2675 tclearregion(0, minrow, col - 1, row - 1);
2676 } 2676 }
2677 tcursor(CURSOR_SAVE);
2677 tswapscreen(); 2678 tswapscreen();
2679 tcursor(CURSOR_LOAD);
2678 } while(orig != term.line); 2680 } while(orig != term.line);
2679 2681
2680 return (slide > 0); 2682 return (slide > 0);