From 726f68b11c522b627079b4eaeee3eac25a904085 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 15 Jul 2022 16:11:10 +0200 Subject: Qt 6.4: Hide bogus 'GL format 0 is not supported' message See https://bugreports.qt.io/browse/QTBUG-104741 and #7314 --- qutebrowser/utils/log.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qutebrowser/utils/log.py b/qutebrowser/utils/log.py index ab94aa40d..1269b46de 100644 --- a/qutebrowser/utils/log.py +++ b/qutebrowser/utils/log.py @@ -462,6 +462,8 @@ def qt_message_handler(msg_type: qtcore.QtMsgType, # https://bugreports.qt.io/browse/QTBUG-76391 "Attribute Qt::AA_ShareOpenGLContexts must be set before " "QCoreApplication is created.", + # Qt 6.4 beta 1: https://bugreports.qt.io/browse/QTBUG-104741 + "GL format 0 is not supported", ] # not using utils.is_mac here, because we can't be sure we can successfully # import the utils module here. -- cgit v1.2.3-54-g00ecf