Good day!
Recently discovered your wonderful browser, and decided to give it a
try under Linux. The only thing that made me sad was inability to
enter russian text in web-forms. Instead of cyrillic symbols
some strange indian hieroglyphs appeared after a keypress.
After some looking at the code I came up with following one-line patch
(against latest SVN), that fixes the issue completely.
Index: gtk/gtk_window.c
===================================================================
--- gtk/gtk_window.c (revision 3666)
+++ gtk/gtk_window.c (working copy)
@@ -400,7 +400,7 @@
case GDK_Hyper_L:
case GDK_Hyper_R: return 0;
- default: return key->keyval;
+ default: return gdk_keyval_to_unicode
(key->keyval);
}
}
--
Best regards,
Dmitry "MAD" Artamonow