bug-ncurses
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: redraw the whole screen


From: Thomas Dickey
Subject: Re: redraw the whole screen
Date: Wed, 22 Mar 2006 14:35:00 -0500
User-agent: Mutt/1.5.11+cvs20060126

On Wed, Mar 22, 2006 at 10:59:21AM -0500, Pierre Abbat wrote:
> I told my program to call redrawwin(stdscr) if I hit control-L. Then I made 
> it 
> scribble on the screen (I have an error message left from a related 
> non-ncurses program) and hit control-L. A few copies of the error message 
> remained. What is the right way to do this?

This works:

        touchwin(stdscr);
        touchwin(curscr);
        wrefresh(curscr);


-- 
Thomas E. Dickey <address@hidden>
http://invisible-island.net
ftp://invisible-island.net

Attachment: signature.asc
Description: Digital signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]