Quantcast

MT.Dialog only writes capital letters?

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

MT.Dialog only writes capital letters?

MojoDK
Hi,

I'm using the "old" Monotouch.Dialog (not the built in).

Suddenly all my EntryElements writes capital letters (shift is constantly down). My normal textboxes writes normal letters, so it's only EntryElement.

I use default keyboard.

Any idea?

Thanks!

Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: MT.Dialog only writes capital letters?

MojoDK
Found the problem.

In EntryElement.cs (which I just updated), line 1344 was...

UITextAutocapitalizationType autocapitalizationType = UITextAutocapitalizationType.AllCharacters;

Changed that to ...

UITextAutocapitalizationType autocapitalizationType = UITextAutocapitalizationType.Sentences;

:)
Loading...