View Single Post
nicolai's Avatar
Posts: 1,637 | Thanked: 4,424 times | Joined on Apr 2009 @ Germany
#5
Originally Posted by laasonen View Post
Thanks, I got the password-field working like this:
Code:
self.fields["password"].set_visibility(False)
But I cant find any information concerning automatic capitalization.
to disable automatic capitalization, set the input mode to
alphanumeric only:
Code:
entry = hildon.Entry(gtk.HILDON_SIZE_AUTO)
entry.set_input_mode(gtk.HILDON_GTK_INPUT_MODE_ALPHA | gtk.HILDON_GTK_INPUT_MODE_NUMERIC)
regards
Nicolai
 

The Following User Says Thank You to nicolai For This Useful Post: