GNOME Bugzilla – Bug 65679
GtkAccelLabel should display more characters literally
Last modified: 2011-02-04 16:09:32 UTC
Currently GtkAccelLabel only displays latin-1 keysyms literally and displays all others by name. This is clearly wrong ... most printable unicode characters should be displayed literally. The hard part is what "printable" means here. g_unichar_isprint() may be good enough, though combining marks may render oddly or not at all without an appropriate base character.
Tue Feb 26 18:38:17 2002 Owen Taylor <otaylor@redhat.com> * gtk/gtkaccellabel.c (gtk_accel_label_refetch): Display any "g_unicode_isgraph()" char literally, not just latin1. (#65679)