From 674de3487325cb050a4c08b739804dc15fd3ab18 Mon Sep 17 00:00:00 2001 From: John Zaitseff Date: Sat, 14 Apr 2012 12:36:43 +1000 Subject: [PATCH] Adjust the Stock Exchange windows slightly by one line The company listing is now one line shorter, and the menu of choices window is one line longer. --- src/exch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/exch.c b/src/exch.c index b44989e..2192b69 100644 --- a/src/exch.c +++ b/src/exch.c @@ -83,7 +83,7 @@ void exchange_stock (void) return; } - newtxwin(17, WIN_COLS, 1, WCENTER, false, 0); + newtxwin(16, WIN_COLS, 1, WCENTER, false, 0); w = getmaxx(curwin); while (selection != SEL_EXIT) { @@ -176,7 +176,7 @@ void exchange_stock (void) wrefresh(curwin); // Show menu of choices for the player - newtxwin(6, WIN_COLS, 18, WCENTER, true, attr_normal_window); + newtxwin(7, WIN_COLS, 17, WCENTER, true, attr_normal_window); left(curwin, 3, 2, attr_normal, attr_keycode, 0, 1, _("^{<1>^} Display stock portfolio"));