pinosaur
/
st.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2257932
)
Remove call to draw in resize
author
Roberto E. Vargas Caballero
<k0ga@shike2.com>
Sun, 16 Sep 2012 12:02:35 +0000
(14:02 +0200)
committer
Roberto E. Vargas Caballero
<k0ga@shike2.com>
Sun, 16 Sep 2012 12:02:35 +0000
(14:02 +0200)
In previous commits draw was removed from all the X events, but I forgot do
it in resize.
---
st.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
st.c
patch
|
blob
|
history
diff --git
a/st.c
b/st.c
index
da6f17e
..
6371167
100644
(file)
--- a/
st.c
+++ b/
st.c
@@
-2319,8
+2319,7
@@
resize(XEvent *e) {
row = (xw.h - 2*BORDER) / xw.ch;
if(col == term.col && row == term.row)
return;
- if(tresize(col, row))
- draw();
+ tresize(col, row);
xresize(col, row);
ttyresize(col, row);
}