Skip to content

Commit 011637b

Browse files
committedApr 3, 2023
Filter out annoying qt 'QGestureManager::deliverEvent' warnings from UI
These aren't our fault, so are just noise
1 parent 799b290 commit 011637b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎src/app/main.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,7 @@ void myMessageOutput( QtMsgType type, const QMessageLogContext &, const QString
400400
* - QtSVG warnings with regards to lack of implementation beyond Tiny SVG 1.2
401401
*/
402402
if ( msg.contains( QLatin1String( "QXcbClipboard" ), Qt::CaseInsensitive ) ||
403+
msg.contains( QLatin1String( "QGestureManager::deliverEvent" ), Qt::CaseInsensitive ) ||
403404
msg.startsWith( QLatin1String( "libpng warning: iCCP: known incorrect sRGB profile" ), Qt::CaseInsensitive ) ||
404405
msg.contains( QLatin1String( "Could not add child element to parent element because the types are incorrect" ), Qt::CaseInsensitive ) ||
405406
msg.contains( QLatin1String( "OpenType support missing for" ), Qt::CaseInsensitive ) )

0 commit comments

Comments
 (0)
Please sign in to comment.