Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
6.4
-
None
Description
I noticed this while adding ignoreMessage calls for tst_QQuickListView::sectionsDragOutsideBounds. The code does this:
if (windowSize.width() <= pos.x() || windowSize.height() <= pos.y()) { qWarning("Mouse event at %d, %d occurs outside target window (%dx%d).", pos.x(), pos.y(), windowSize.width(), windowSize.height()); }
Since e.g. 240 is not less than -500, the warning never gets hit, although it most probably should.
Attachments
Issue Links
- relates to
-
QTBUG-67702 QTest::ignoreMessage() fails to match regex against warning string
- Closed