aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAndrew den Exter <andrew.den-exter@nokia.com>2012-04-03 14:27:09 +1000
committerQt by Nokia <qt-info@nokia.com>2012-04-03 06:36:14 +0200
commitb3264e2cb6a8fe87754aa1335ab9f8d5e3910c14 (patch)
tree821d844d2c0c0ffe8637c0b0c8c6ace53d704f5b /tests
parent368a3a736c8dbe945cd820b78523191522351494 (diff)
Fix QQuickTextInput test instability.
Use a QWindow to steal focus rather than a second QQuickView, as it appears there may be some issue with shared GL resources between views. Change-Id: I8a134e3b4a1e54f645d0071543ec8f94338ff315 Reviewed-by: Yann Bodson <yann.bodson@nokia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/quick/qquicktextinput/tst_qquicktextinput.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/quick/qquicktextinput/tst_qquicktextinput.cpp b/tests/auto/quick/qquicktextinput/tst_qquicktextinput.cpp
index 11029515e2..4f2f3cbb62 100644
--- a/tests/auto/quick/qquicktextinput/tst_qquicktextinput.cpp
+++ b/tests/auto/quick/qquicktextinput/tst_qquicktextinput.cpp
@@ -2402,7 +2402,7 @@ void tst_qquicktextinput::cursorVisible()
QCOMPARE(input.isCursorVisible(), true);
QCOMPARE(spy.count(), 5);
- QQuickView alternateView;
+ QWindow alternateView;
alternateView.show();
alternateView.requestActivateWindow();
QTest::qWaitForWindowShown(&alternateView);