tMoved title of Messages area so that it does not overwrite the bottom tee on an 80-character wide display, and moved the display of the bottom tee to before the display of the Messages area title. - vaccinewars - be a doctor and try to vaccinate the world
 (HTM) git clone git://src.adamsgaard.dk/vaccinewars
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 7c08b5b23e28bd8a8f0a9f298b4196a4cd0acd34
 (DIR) parent 870334d59dab288ae44229b07ab434361245d49c
 (HTM) Author: Ben Webb <ben@salilab.org>
       Date:   Mon,  6 Jan 2003 11:40:15 +0000
       
       Moved title of Messages area so that it does not overwrite the bottom tee
       on an 80-character wide display, and moved the display of the bottom tee
       tto before the display of the Messages area title.
       
       
       Diffstat:
         M src/curses_client/curses_client.c   |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/src/curses_client/curses_client.c b/src/curses_client/curses_client.c
       t@@ -1862,11 +1862,11 @@ void print_status(Player *Play, gboolean DispDrug)
            for (i = 0; i < Width - 4; i++)
              addch(ACS_HLINE);
            addch(ACS_RTEE);
       +    mvaddch(9, Width / 2, ACS_BTEE);
        
            /* Title of the "Messages" window in the curses client */
       -    mvaddstr(9, 15, _("Messages (-/+ scrolls up/down)"));
       +    mvaddstr(9, 9, _("Messages (-/+ scrolls up/down)"));
        
       -    mvaddch(9, Width / 2, ACS_BTEE);
            mvaddch(15, 1, ACS_LLCORNER);
            for (i = 0; i < Width - 4; i++)
              addch(ACS_HLINE);