iOS: add support for new style hint: SetFocusOnTouchRelease

Change-Id: I3ec2e2397d76f750f3263e67745aff082d253d15
Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@digia.com>
This commit is contained in:
Richard Moe Gustavsen 2013-06-19 11:58:42 +02:00 committed by The Qt Project
parent 438211ec62
commit af7c0af561

View File

@ -135,6 +135,8 @@ QVariant QIOSIntegration::styleHint(StyleHint hint) const
switch (hint) {
case ShowIsFullScreen:
return true;
case SetFocusOnTouchRelease:
return true;
default:
return QPlatformIntegration::styleHint(hint);
}