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

Reece Dunn msclrhd at googlemail.com
Tue Apr 21 15:16:38 CDT 2009


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

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

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

diff --git a/programs/winecfg/Ja.rc b/programs/winecfg/Ja.rc
index 8eaa603..a7868bb 100644
--- a/programs/winecfg/Ja.rc
+++ b/programs/winecfg/Ja.rc
@@ -57,9 +57,9 @@ FONT 9, "MS Shell Dlg"
 BEGIN
     GROUPBOX        " ?????????? ",IDC_STATIC, 8,4,244,240
     LTEXT           "Wine????????????????Windows?????????????????? ????????????????????????????????????????\n??????????????????????",
-                    IDC_STATIC,15,20,227,30
+                    IDC_STATIC,15,20,227,36
     CONTROL         "????????",IDC_APP_LISTVIEW,"SysListView32",WS_BORDER | WS_TABSTOP | LVS_LIST | LVS_SINGLESEL | LVS_SHOWSELALWAYS,
-                    15,50,230,150
+                    15,56,230,144
     PUSHBUTTON	    "???????????(&A)...",IDC_APP_ADDAPP, 90,204,75,14
     PUSHBUTTON	    "???????????(&R)",IDC_APP_REMOVEAPP, 170,204,75,14
     LTEXT           "&Windows ?????:",IDC_STATIC,17,226,58,8
-- 
1.6.0.4


More information about the wine-patches mailing list