Hi,
On Sun, Nov 19, 2006, Osamu Aoki wrote:
> Original bug report: http://bugs.debian.org/374640
> This freeze problem happens with not only SCIM package as originally
> reported but also when using UIM package to input Japanese.
The reporter said this was working with SCIM but not working with XIM
using SCIM (IIUC).
> Kenshi Muto(a Japanese DD) reported to me over Japanese mail that this
> happens with UIM and I confirmed it. Under UIM, this problem does not
> happen with other Gnome applications, firefox, gnome-terminal, OOo,
> GNOME search tool, too.
Is this with UIM under XIM as well? Or with GTK_IM_MODULE=uim?
I think all the applications you mention were using a GtkEntry, I've
attached a Python script creating a GtkTextView, could you try
reproducing the freeze with the script?
> Current work around is to use uim or scim as immodule right after gedit
> opens by switching input method using right click text imput area.
This sounds like it breaks when GTK_IM_MODULE=xim and you use SCIM as
XIM as well.
Bye,
--
Loïc Minier <[EMAIL PROTECTED]>
10 SIN
20 GO TO ROBOT HELL -- Temple of Robotology
#!/usr/bin/python
import pygtk
pygtk.require("2.0")
import gtk
textview = gtk.TextView()
window = gtk.Window(gtk.WINDOW_TOPLEVEL)
window.add(textview)
window.resize(400, 600)
window.show_all()
gtk.main()