[PATCH] Remove call to draw in resize

From: Roberto E. Vargas Caballero <k0ga_AT_shike2.com>
Date: Sun, 16 Sep 2012 13:50:13 +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(-)
diff --git a/st.c b/st.c
index 12d6665..11460c7 100644
--- a/st.c
+++ b/st.c
_AT_@ -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);
 }
-- 
1.7.10.4
--9jxsPFA5p3P2qPhR--
Received on Mon Sep 17 2001 - 00:00:00 CEST

This archive was generated by hypermail 2.3.0 : Sun Sep 16 2012 - 14:12:02 CEST