diff --git a/Install b/Install index d78e9daa..7afdf9b8 100755 --- a/Install +++ b/Install @@ -175,16 +175,6 @@ if [ "$NLS" = "y" -o "$NLS" = "Y" ]; then continue fi - if [ "$MB" = "" -a "$i" = "ja" -o "$i" = "ko" ]; then - echo - echo "A language you selected needs multi-byte character support" - echo "Do you want to enable it?" - echo -n " [n] " - read MB - if [ "$MB" = "y" -o "$MB" = "Y" ]; then - OPTIONS="$OPTIONS --enable-kanji" - fi - fi done echo echo "Where do you want to put the message files? [$NLSDIR]" diff --git a/WINGs/README b/WINGs/README index c1ed638e..b0f0ede4 100644 --- a/WINGs/README +++ b/WINGs/README @@ -37,9 +37,8 @@ structs and most of the intrinsics are very close to OpenStep classes. Internationalization: --------------------- - WINGs supports display of multibyte characters (kanji etc) without the -to specify any flags (ie: there is no way to disable i18n support). -Change ~/GNUstep/Defaults/WMGLOBAL to set the desired font set. + Change ~/GNUstep/Defaults/WMGLOBAL to set the desired font set and +set MultiByteText = YES; to enable support for multibyte text. Widgets provided by WINGs: diff --git a/src/moveres.c b/src/moveres.c index 4ec56159..eacc0a97 100644 --- a/src/moveres.c +++ b/src/moveres.c @@ -74,7 +74,7 @@ wGetGeometryWindowSize(WScreen *scr, unsigned int *width, { *width = WMWidthOfString(scr->info_text_font, "-8888 x -8888", 13); - *height = (7 * WMFontHeight(scr->info_text_font)) / 4 - 1; + *height = (6 * WMFontHeight(scr->info_text_font)) / 4 - 1; }