From bd374de7ec3de73e4034e2a869a7e2a4a5c1d0b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20G=C3=BCnther?= Date: Fri, 21 Mar 2008 19:05:54 +0100 Subject: Fixed height of info window for spanish text --- HISTORY | 1 + menu.cpp | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/HISTORY b/HISTORY index e7eaf71..43a4bc2 100644 --- a/HISTORY +++ b/HISTORY @@ -37,3 +37,4 @@ ____-__-__: Version _._._ - Added commands menu. - Added commands to load and save puzzles from/to the sudoku-list file. - Added setup to commands menu. +- Fixed height of info window for spanish text. diff --git a/menu.cpp b/menu.cpp index b31432f..671ca5b 100644 --- a/menu.cpp +++ b/menu.cpp @@ -17,7 +17,7 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * $Id: menu.cpp 117 2008-03-21 17:57:50Z tom $ + * $Id: menu.cpp 118 2008-03-21 18:05:54Z tom $ */ #include "menu.h" @@ -379,7 +379,7 @@ void Menu::paint() if (infoText) { if (!info) - info = new Bitmap(GRID_SIZE - 20, 60); + info = new Bitmap(GRID_SIZE - 20, 90); info->text(infoText); osd->DrawBitmap(xPos + 10, yPos + 10, *info); infoText = NULL; -- cgit v1.2.3