aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--st.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/st.c b/st.c
index da6f17e..6371167 100644
--- a/st.c
+++ b/st.c
@@ -2319,8 +2319,7 @@ resize(XEvent *e) {
2319 row = (xw.h - 2*BORDER) / xw.ch; 2319 row = (xw.h - 2*BORDER) / xw.ch;
2320 if(col == term.col && row == term.row) 2320 if(col == term.col && row == term.row)
2321 return; 2321 return;
2322 if(tresize(col, row)) 2322 tresize(col, row);
2323 draw();
2324 xresize(col, row); 2323 xresize(col, row);
2325 ttyresize(col, row); 2324 ttyresize(col, row);
2326} 2325}