[Bug 965953] Re: indicator applet with scroll arrows

2012-05-22 Thread Jiahua Huang
Hi Alex,
yes, it use a reserved menu height to fix this bug, so...

Hi Mike,
there are some indicator-applet debs in this attachment.

** Attachment added: indicator-applet_0.5.0-2_i386.debs.7z
   
https://bugs.launchpad.net/indicator-applet/+bug/965953/+attachment/3157172/+files/indicator-applet_0.5.0-2_i386.debs.7z

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/965953

Title:
  indicator applet with scroll arrows

To manage notifications about this bug go to:
https://bugs.launchpad.net/gtk/+bug/965953/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 965953] Re: indicator applet with scroll arrows

2012-05-20 Thread Jiahua Huang
Hi, Alex,
it can use these commands to apply the patch::

cd /tmp
apt-get build-dep  indicator-applet
apt-get source indicator-applet
wget 
https://raw.github.com/gist/2760441/indicator-applet-scroll-arrows.patch
cd indicator-applet-0.5.0
patch -p1  ../indicator-applet-scroll-arrows.patch
time dpkg-buildpackage -rfakeroot
cd ..
sudo dpkg -i indicator-applet*.deb

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/965953

Title:
  indicator applet with scroll arrows

To manage notifications about this bug go to:
https://bugs.launchpad.net/gtk/+bug/965953/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 965953] Re: indicator applet with scroll arrows

2012-05-19 Thread Jiahua Huang
Thers is a patch:


diff --git indicator-applet/src/applet-main.c indicator-applet/src/applet-main.c
--- indicator-applet/src/applet-main.c
+++ indicator-applet/src/applet-main.c
@@ -362,6 +362,21 @@ accessible_desc_update (IndicatorObject 
   return;
 }
 
+static gboolean
+do_menu_reposition(gpointer menu)
+{
+  gtk_widget_set_size_request(menu, -1, -1);
+  g_timeout_add(20, gtk_menu_reposition, menu);
+  return 0;
+}
+
+static void
+on_menuitem_show (GtkMenuItem *menuitem, gpointer menu)
+{
+  gtk_widget_set_size_request(menu, -1, 350);
+  g_idle_add(do_menu_reposition, menu);
+}
+
 static void
 entry_added (IndicatorObject * io, IndicatorObjectEntry * entry, GtkWidget * 
menubar)
 {
@@ -435,6 +450,7 @@ entry_added (IndicatorObject * io, Indic
 
   if (entry-menu != NULL) {
 gtk_menu_item_set_submenu(GTK_MENU_ITEM(menuitem), 
GTK_WIDGET(entry-menu));
+g_signal_connect(G_OBJECT(menuitem), activate, 
G_CALLBACK(on_menuitem_show), entry-menu);
   }
 
   place_in_menu(menubar, menuitem, io, entry);


** Patch added: indicator-applet-scroll-arrows.patch
   
https://bugs.launchpad.net/indicator-applet/+bug/965953/+attachment/3153247/+files/indicator-applet-scroll-arrows.patch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/965953

Title:
  indicator applet with scroll arrows

To manage notifications about this bug go to:
https://bugs.launchpad.net/gtk/+bug/965953/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 965953] Re: indicator applet with scroll arrows

2012-05-19 Thread Jiahua Huang
I'm sorry for my negligence,
this is the patch:

diff --git indicator-applet/src/applet-main.c indicator-applet/src/applet-main.c
--- indicator-applet/src/applet-main.c
+++ indicator-applet/src/applet-main.c
@@ -362,6 +362,21 @@ accessible_desc_update (IndicatorObject 
   return;
 }
 
+static gboolean
+do_menu_reposition(gpointer menu)
+{
+  gtk_widget_set_size_request(menu, -1, -1);
+  g_timeout_add(20, (GSourceFunc) gtk_menu_reposition, (gpointer) menu);
+  return 0;
+}
+
+static void
+on_menuitem_show (GtkMenuItem *menuitem, gpointer menu)
+{
+  gtk_widget_set_size_request(menu, -1, 350);
+  g_idle_add((GSourceFunc) do_menu_reposition, (gpointer) menu);
+}
+
 static void
 entry_added (IndicatorObject * io, IndicatorObjectEntry * entry, GtkWidget * 
menubar)
 {
@@ -435,6 +450,7 @@ entry_added (IndicatorObject * io, Indic
 
   if (entry-menu != NULL) {
 gtk_menu_item_set_submenu(GTK_MENU_ITEM(menuitem), 
GTK_WIDGET(entry-menu));
+g_signal_connect(G_OBJECT(menuitem), activate, 
G_CALLBACK(on_menuitem_show), entry-menu);
   }
 
   place_in_menu(menubar, menuitem, io, entry);


** Patch added: fix scroll arrows of menu
   
https://bugs.launchpad.net/indicator-applet/+bug/965953/+attachment/3153265/+files/indicator-applet-scroll-arrows.patch

** Patch removed: indicator-applet-scroll-arrows.patch
   
https://bugs.launchpad.net/indicator-applet/+bug/965953/+attachment/3153247/+files/indicator-applet-scroll-arrows.patch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/965953

Title:
  indicator applet with scroll arrows

To manage notifications about this bug go to:
https://bugs.launchpad.net/gtk/+bug/965953/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 488559] Re: Chromium browser abstraction doesn't have correct path

2010-02-08 Thread Jiahua Huang
Hi, I had prepare this for karmic in ppa:linux-deepin
https://launchpad.net/~linux-deepin/+archive/ppa/+sourcepub/956668/+listing-archive-extra

-- 
Chromium browser abstraction doesn't have correct path
https://bugs.launchpad.net/bugs/488559
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 371167] Re: Chinese file names in Zip Archives compressed on Windows cannot be extracted correctly

2009-12-21 Thread Jiahua Huang
This patch will fix it

** Attachment added: unzip_filename_cp936_to_utf8.patch
   http://launchpadlibrarian.net/37016328/unzip_filename_cp936_to_utf8.patch

-- 
Chinese file names in Zip Archives compressed on Windows cannot be extracted 
correctly
https://bugs.launchpad.net/bugs/371167
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdeutils in ubuntu.

-- 
kubuntu-bugs mailing list
kubuntu-b...@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 251122] Re: vim-gtk/-gnome use of gtk-filechooser causes recently used files list to be constantly written

2009-04-28 Thread Jiahua Huang
I'm unhappy that switching to the ugly and gtk file selection dialog.
I prefer to err on the recently-used func.

This patch overwrited the g_bookmark_file_to_file() func to fixed the 
considerable I/O problem,
and switching to the new-style gtk_file_chooser_dialog.

It works on my Ubuntu 9.04.


--- vim-7.2.079/src/gui_gtk.c   2009-04-26 13:06:52 +
+++ vim-7.2.079/src/gui_gtk.c   2009-04-26 18:57:06 +
@@ -1199,8 +1199,17 @@
  * ~/.recently-used.xbel every time the main loop is quit.  For Vim that means
  * on just about any event. */
 /* # define USE_FILE_CHOOSER */
+#define USE_FILE_CHOOSER 1
 #endif
 
+extern gboolean
+g_bookmark_file_to_file (GBookmarkFile  *bookmark,
+ const gchar*filename,
+ GError**error)
+{
+  return TRUE;
+}
+
 #ifndef USE_FILE_CHOOSER
 /*ARGSUSED*/
 static void

** Attachment added: vim-gtk-filechooser.patch
   http://launchpadlibrarian.net/26060276/vim-gtk-filechooser.patch

-- 
vim-gtk/-gnome use of gtk-filechooser causes recently used files list to be 
constantly written
https://bugs.launchpad.net/bugs/251122
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 102705] Re: video codec wmva not handled by gstreamer0.10-pitfdll

2008-06-08 Thread Jiahua Huang

[EMAIL PROTECTED]:~$ LANG=C  gst-launch playbin -v 
uri=file:///home/huahua/音乐/Spent\ Too\ Long\ Walking\ With\ No.wma 
Setting pipeline to PAUSED ...
/playbin0/decodebin0/typefind.src: caps = video/x-ms-asf
Pipeline is PREROLLING ...
/playbin0/selector_audio_src0: active-pad = NULL
/playbin0/decodebin0/queue0.sink: caps = audio/x-wma, wmaversion=(int)2, 
bitrate=(int)128016, depth=(int)16, rate=(int)44100, channels=(int)2, 
block_align=(int)5945, codec_data=(buffer)00880f00
/playbin0/decodebin0/queue0.src: caps = audio/x-wma, wmaversion=(int)2, 
bitrate=(int)128016, depth=(int)16, rate=(int)44100, channels=(int)2, 
block_align=(int)5945, codec_data=(buffer)00880f00
wine/module: Win32 LoadLibrary failed to load: wmadmod.dll, 
/usr/lib/win32/wmadmod.dll, /usr/local/lib/win32/wmadmod.dll
Failed creating an audio decoder: could not open DMO filter from DLL wmadmod.dll

-- 
video codec wmva not handled by gstreamer0.10-pitfdll
https://bugs.launchpad.net/bugs/102705
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 203571] Re: Embedded bitmap should be enabled by default

2008-05-27 Thread Jiahua Huang

** Attachment added: wqy-zenhei-compare.png
   http://launchpadlibrarian.net/14749314/wqy-zenhei-compare.png

-- 
Embedded bitmap should be enabled by default
https://bugs.launchpad.net/bugs/203571
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


Re: [Bug 229578] Re: ttf-wqy-zenhei makes libqt4.4 to render all fonts unantialiased

2008-05-12 Thread Jiahua Huang
On Tue, May 13, 2008 at 8:44 AM, Pan, Shi Zhu [EMAIL PROTECTED] wrote:
  Have to say we may need a pole on how many people prefer bitmaped fonts to
  antialiased truetype fonts. Almost all of my colleagues remove the bitmap
  inside the WQY after they installed ubuntu 8.04 and they like the
  antialiased fonts much better.


The same as you did,
we also like the antialiased truetype fonts much better.

-- 
ttf-wqy-zenhei makes libqt4.4 to render all fonts unantialiased
https://bugs.launchpad.net/bugs/229578
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 135067] Re: /dev/kqemu is root-only - there should be a qemu group

2008-05-08 Thread Jiahua Huang
Confirm it.

I use this file /etc/udev/rules.d/60-kqemu.rules 
content: KERNEL==kqemu, NAME=%k, MODE=0666


$ ls -alhF /dev/kqemu
crw-rw-rw- 1 root root 10, 61 2008-05-08 20:08 /dev/kqemu

-- 
/dev/kqemu is root-only - there should be a qemu group
https://bugs.launchpad.net/bugs/135067
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 228228] [NEW] Firefox-3.0 zh-CN language/region package loss

2008-05-08 Thread Jiahua Huang
Public bug reported:

Binary package hint: language-pack-gnome-zh-base

In my Ubuntu 8.04,
when firefox-3.0 running on zh_CN.UTF-8 (Simplified Chinese) locale,
it always display with Traditional Chinese Interface.

It seems language-pack-gnome-zh-base contains 
 [EMAIL PROTECTED]/ 
under /usr/lib/firefox-addons/extensions/ 
but not  [EMAIL PROTECTED]

** Affects: language-pack-gnome-zh-base (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Firefox-3.0 zh-CN language/region package loss
https://bugs.launchpad.net/bugs/228228
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 164845] Re: Can't receive drag and drop chinese text from Firefox

2008-05-06 Thread Jiahua Huang
I can replicate this bug.

-- 
Can't receive drag and drop chinese text from Firefox
https://bugs.launchpad.net/bugs/164845
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 206018] Re: ttf-wqy-zenhei and other Chinese fonts got mixed up where the same style is expected

2008-05-05 Thread Jiahua Huang
Agree with Pan Shi Zhu.

This poll http://forum.ubuntu.org.cn/viewtopic.php?t=120639 reported 
truetype WQY ZenHei without bitmaps to be leading (75%).

-- 
ttf-wqy-zenhei and other Chinese fonts got mixed up where the same style is 
expected
https://bugs.launchpad.net/bugs/206018
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 93973] Can't use SCIM input method in wine

2007-03-19 Thread Jiahua Huang
Public bug reported:

Binary package hint: wine

When I type Ctrl+Space to activate SCIM input method in wine,  the wine
app hangs.

** Affects: wine (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
Can't use SCIM input method in wine
https://launchpad.net/bugs/93973

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 93973] Re: Can't use SCIM input method in wine

2007-03-19 Thread Jiahua Huang
This is a patch

** Attachment added: about XIM input method hangs wine
   http://librarian.launchpad.net/6872331/wine-ximimm.patch

-- 
Can't use SCIM input method in wine
https://launchpad.net/bugs/93973

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 51082] Re: wine run slowly under zh_CN.UTF-8 locale

2007-03-19 Thread Jiahua Huang
well, it's a bug in libx11.  Bug #54522

** Changed in: wine (Ubuntu)
   Status: Unconfirmed = Rejected

-- 
wine run slowly under zh_CN.UTF-8 locale
https://launchpad.net/bugs/51082

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 87258] Re: chinese translation, TC-SC, can't deal with 寧裡奧

2007-02-23 Thread Jiahua Huang
Confrimed.

** Changed in: openoffice.org (Ubuntu)
   Status: Unconfirmed = Confirmed

-- 
chinese translation, TC-SC, can't deal with 寧裡奧
https://launchpad.net/bugs/87258

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 72004] Re: not icons in synfigstudio

2007-02-02 Thread Jiahua Huang
I used  sudo  ln  -sf  /usr/share/pixmaps/   /  ,

it works.

-- 
not icons in synfigstudio
https://launchpad.net/bugs/72004

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 37711] Re: Qt/SCIM broken (Cannot enter numbers in to spinbox widget)

2006-10-30 Thread Jiahua Huang
I can't  reproduce this in edgy.  zh_CN.UTF-8, scim, skim.

-- 
Qt/SCIM broken (Cannot enter numbers in to spinbox widget)
https://launchpad.net/bugs/37711

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 64294] Re: Synthetic emboldening settings in zh_{CN,HK,SG,TW}

2006-10-16 Thread Jiahua Huang
yes, it's correct.

-- 
Synthetic emboldening settings in zh_{CN,HK,SG,TW}
https://launchpad.net/bugs/64294

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 38166] Re: X clipboard broken for multibyte characters

2006-10-16 Thread Jiahua Huang
 I didn ' t reappear this in Kubuntu Edgy.
results:
kate - oowriter: Success
oowriter - kate: Success
firefox - oowriter: Success
oowriter - firefox: Success
firefox - kate: Success
kate - firefox: Success

on zh_CN.UTF-8 locale.

scrothot: 
http://img525.imageshack.us/img525/6988/200610170706171024x768scrotrq1.png

-- 
X clipboard broken for multibyte characters
https://launchpad.net/bugs/38166

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 65697] kubuntu dapper can't display Chinese in non-Chinese locale

2006-10-12 Thread Jiahua Huang
Public bug reported:

Binary package hint: kubuntu-default-settings

How about switch back the fonts of kubuntu to sans?
it was Dejavu in dapper, kubuntu dapper can't use dejavu to display Chinese, 
because  dejavu wasn’t configure in fontconfig.
we’d configure  it if guys wanna read Chinese in non-Chinese locale.

** Affects: kubuntu-default-settings (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
kubuntu dapper can't display Chinese in non-Chinese locale
https://launchpad.net/bugs/65697

-- 
kubuntu-bugs mailing list
kubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 26436] Re: gtkmozembed crashs with python

2006-10-12 Thread Jiahua Huang
python-gtkmozembed in Edgy still  Segmentation fault.

still need export LD_LIBRARY_PATH=/usr/lib/firefox

-- 
gtkmozembed crashs with python
https://launchpad.net/bugs/26436

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 55802] Re: nvidia not compatible with Xorg 7.1 RENDER (Fonts don't appear in edgy)

2006-08-24 Thread Jiahua Huang
I found that it can be fixed by Xgl. 
Fonts can display fine under Xgl, but no properly under Xorg7.1 .

-- 
nvidia not compatible with Xorg 7.1 RENDER (Fonts don't appear in edgy)
https://launchpad.net/bugs/55802

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 55802] Re: nvidia not compatible with Xorg 7.1 RENDER (Fonts don't appear in edgy)

2006-08-24 Thread Jiahua Huang
NVIDIA binary drivers version 1.0-8774 outed.
http://www.nvidia.com/object/unix.html
http://www.nvidia.com/object/linux_display_ia32_1.0-8774.html
It said that:
* Added support for X.Org 7.1.
* Added support for XVideo with the Composite X extension when using X.Org 
7.1.
* Improved interaction with newer Linux kernels. 


How about it?

-- 
nvidia not compatible with Xorg 7.1 RENDER (Fonts don't appear in edgy)
https://launchpad.net/bugs/55802

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 54522] Re: wine under zh_CN.UTF-8 locales performs too slow

2006-07-30 Thread Jiahua Huang
It works, wine runs fastly now.

-- 
wine under zh_CN.UTF-8 locales performs too slow
https://launchpad.net/bugs/54522

--
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 54522] Re: wine under zh_CN.UTF-8 locales performs too slow

2006-07-30 Thread Jiahua Huang
** Changed in: libx11 (Ubuntu)
   Status: Unconfirmed = Confirmed

-- 
wine under zh_CN.UTF-8 locales performs too slow
https://launchpad.net/bugs/54522

--
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 51082] wine run slowly under zh_CN.UTF-8 locale

2006-06-27 Thread Jiahua Huang
Public bug reported:

Binary package hint: wine

wine run fast under en_US.UTF-8 locale , but very slowly under
zh_CN.UTF-8 locale. Even if run the notepad.

** Affects: wine (Ubuntu)
 Importance: Untriaged
 Status: Unconfirmed

-- 
wine run slowly under zh_CN.UTF-8 locale
https://launchpad.net/bugs/51082

--
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 51082] Re: wine run slowly under zh_CN.UTF-8 locale

2006-06-27 Thread Jiahua Huang
to reappear it,
please guaranteed you to install  language-support-zh ,
execute 
 LANG=en_US.UTF-8 notepad   
and 
 LANG=zh_CN.UTF-8 notepad  ,
their speed differences is very obvious.


I had strace that under zh_CN.UTF-8 locale,
it seems it will polls the nonexistent gbk-0  X core fonts . 
the polls make it run slowly.


I think the gbk-0  X core font is no appropriate to a UTF-8 locale.


I found XLC_LOCALE file:   /usr/share/X11/locale/zh_CN.UTF-8/XLC_LOCALE  .

When I remove the  
fs3 class (Chinese Han Character GBK)   
  from  /usr/share/X11/locale/zh_CN.UTF-8/XLC_LOCALE ,
wine runs fast as the en_US.UTF-8 case.

-- 
wine run slowly under zh_CN.UTF-8 locale
https://launchpad.net/bugs/51082

--
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 47045] Re: java application can not display chinese characters

2006-06-23 Thread Jiahua Huang
hi, Thom.
It needs this font  ttf-arphic-uming .

-- 
java application can not display chinese characters
https://launchpad.net/bugs/47045

--
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs