[PATCH] winecfg: fix the size of the application static text in Spanish.

Reece Dunn msclrhd at googlemail.com
Tue Apr 21 15:14:46 CDT 2009


The static text that appears in Spanish is 30 DLUs high. However, the
text wraps to 4 lines and the font height is 8 DLUs (4 x 8 = 32), so
the text is clipped by the listview.

- Reece
-------------- next part --------------
From c4ecef2ca8d3274b0c223baa83e1637505e9dc72 Mon Sep 17 00:00:00 2001
From: Reece Dunn <msclrhd at gmail.com>
Date: Tue, 21 Apr 2009 21:10:04 +0100
Subject: [PATCH] winecfg: fix the size of the application static text in Spanish.

---
 programs/winecfg/Es.rc |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/programs/winecfg/Es.rc b/programs/winecfg/Es.rc
index 440ea71..86639f7 100644
--- a/programs/winecfg/Es.rc
+++ b/programs/winecfg/Es.rc
@@ -52,9 +52,9 @@ FONT 8, "MS Shell Dlg"
 BEGIN
     GROUPBOX        " Configuración de aplicaciones ",IDC_STATIC, 8,4,244,240
     LTEXT           "Wine puede imitar distintas versiones de Windows para cada aplicación. Esta pestaña está enlazada a las de Librerías y Gráficos para poder cambiar en ellas la configuración global y/o la de por aplicación.",
-                    IDC_STATIC,15,20,227,30
+                    IDC_STATIC,15,20,227,32
     CONTROL         "Aplicaciones",IDC_APP_LISTVIEW,"SysListView32",WS_BORDER | WS_TABSTOP | LVS_LIST | LVS_SINGLESEL | LVS_SHOWSELALWAYS,
-                    15,50,230,150
+                    15,56,230,144
     PUSHBUTTON      "&Añadir aplicación...",IDC_APP_ADDAPP, 90,204,75,14
     PUSHBUTTON      "&Eliminar aplicación...",IDC_APP_REMOVEAPP, 170,204,75,14
     LTEXT           "&Versión a imitar:",IDC_STATIC,17,226,58,16
-- 
1.6.0.4


More information about the wine-patches mailing list