summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Günther <tom@toms-cafe.de>2008-03-21 19:05:54 +0100
committerThomas Günther <tom@toms-cafe.de>2008-03-21 19:05:54 +0100
commitbd374de7ec3de73e4034e2a869a7e2a4a5c1d0b0 (patch)
tree0200cc5d923138288a56608377d8a2e4712b9f3f
parenta7f8b780f8b91782d08b12f92fd07c7f1ae66c60 (diff)
downloadvdr-plugin-sudoku-bd374de7ec3de73e4034e2a869a7e2a4a5c1d0b0.tar.gz
vdr-plugin-sudoku-bd374de7ec3de73e4034e2a869a7e2a4a5c1d0b0.tar.bz2
Fixed height of info window for spanish text
-rw-r--r--HISTORY1
-rw-r--r--menu.cpp4
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;