View Single Post
Posts: 159 | Thanked: 122 times | Joined on Nov 2009
#85
Originally Posted by fcrochik View Post
Martin just pointed out to me that this is a known bug: http://bugreports.qt.nokia.com/browse/QTBUG-12171

I will see if I can find a work around for this bug or to make the qt4.7 version work and then will promote the package. If nothing else I want to make sure that this project can have a new version soon that works before promoting the existing one to extras.
And there is the change, that should do it but does not:
Code:
#ifdef Q_WS_MAEMO_5
// Maemo 5 MicroB Browser disables auto-uppercase and predictive text, thus, so do we.
webPageClient->setInputMethodHint(Qt::ImhNoAutoUppercase, true);
webPageClient->setInputMethodHint(Qt::ImhNoPredictiveText, true);
#endif // Q_WS_MAEMO_5
Can you get hold of the object and try to set it again?
 

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