Skip to content

Commit

Permalink
Filter out annoying qt 'QGestureManager::deliverEvent' warnings from UI
Browse files Browse the repository at this point in the history
These aren't our fault, so are just noise
  • Loading branch information
nyalldawson committed Apr 3, 2023
1 parent 799b290 commit 011637b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/app/main.cpp
Expand Up @@ -400,6 +400,7 @@ void myMessageOutput( QtMsgType type, const QMessageLogContext &, const QString
* - QtSVG warnings with regards to lack of implementation beyond Tiny SVG 1.2
*/
if ( msg.contains( QLatin1String( "QXcbClipboard" ), Qt::CaseInsensitive ) ||
msg.contains( QLatin1String( "QGestureManager::deliverEvent" ), Qt::CaseInsensitive ) ||
msg.startsWith( QLatin1String( "libpng warning: iCCP: known incorrect sRGB profile" ), Qt::CaseInsensitive ) ||
msg.contains( QLatin1String( "Could not add child element to parent element because the types are incorrect" ), Qt::CaseInsensitive ) ||
msg.contains( QLatin1String( "OpenType support missing for" ), Qt::CaseInsensitive ) )
Expand Down

0 comments on commit 011637b

Please sign in to comment.