GNOME Bugzilla – Bug 600034
Problem with non ASCII characters in application search box
Last modified: 2010-03-11 20:52:32 UTC
Created attachment 146502 [details] screenshot Characters in my language (e.g. portuguese) which have, for example, '^~ signs are not placed properly in the word when searching for applications. This happens both with the search box in the activities menu and with Alt+F2. Here goes a screenshot. Using gnome-shell built from git.
yup, we need to be using St.Entry instead of Clutter.Text, to get input method support
I got about 70% through porting the entry to CSS and St.Entry, the major problem here is that St.Entry implements hint-text by actually changing the text of the underlying Clutter.Text, which gets into all sorts of weird issues; e.g. getting the "text" property you'll get your hint back. Also St.Entry is designed to hide the hint when focused, but we want to keep the hint until the user actually types something For the latter I started adding a "dehint-on-focus" property, for the former probably the right way is to patch St.Entry to use a secondary label layered on top for the hint, but not trivial.
*** Bug 602155 has been marked as a duplicate of this bug. ***
Both Alt-F2 and the search box in the overview have been ported to StEntry, so I'm gonna close the bug - feel free to reopen if there are still issues I am not aware of ...