diff options
author | Thomas Günther <tom@toms-cafe.de> | 2008-03-21 19:05:54 +0100 |
---|---|---|
committer | Thomas Günther <tom@toms-cafe.de> | 2008-03-21 19:05:54 +0100 |
commit | bd374de7ec3de73e4034e2a869a7e2a4a5c1d0b0 (patch) | |
tree | 0200cc5d923138288a56608377d8a2e4712b9f3f | |
parent | a7f8b780f8b91782d08b12f92fd07c7f1ae66c60 (diff) | |
download | vdr-plugin-sudoku-bd374de7ec3de73e4034e2a869a7e2a4a5c1d0b0.tar.gz vdr-plugin-sudoku-bd374de7ec3de73e4034e2a869a7e2a4a5c1d0b0.tar.bz2 |
Fixed height of info window for spanish text
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | menu.cpp | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -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. @@ -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; |