|
From: Alex M. S. <arc...@us...> - 2004-05-02 08:43:40
|
Update of /cvsroot/nettle/nettle/c In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14935/c Modified Files: process Log Message: Nettle was redrawing too large an area when windows were being updated. This fixes it. Index: process =================================================================== RCS file: /cvsroot/nettle/nettle/c/process,v retrieving revision 1.91 retrieving revision 1.92 diff -C2 -d -r1.91 -r1.92 *** process 1 Feb 2004 09:50:26 -0000 1.91 --- process 2 May 2004 08:43:25 -0000 1.92 *************** *** 34,39 **** { changedsession = session; ! changedbox.tl.x = 255; ! changedbox.tl.y = 255; changedbox.br.x = 0; changedbox.br.y = 0; --- 34,39 ---- { changedsession = session; ! changedbox.tl.x = session->terminal_size.x; ! changedbox.tl.y = session->terminal_size.y + session->scrollback; changedbox.br.x = 0; changedbox.br.y = 0; |