Hide Qt 6.9.1 IPC signal warning

The warning is triggered from inside Qt and most
likely bogus:
https://bugreports.qt.io/browse/QTBUG-137424

See https://github.com/qutebrowser/qutebrowser/pull/8595#issuecomment-2938912511
This commit is contained in:
Florian Bruhin 2025-06-05 11:17:35 +02:00
parent 9cf95165a9
commit 696a4490ff
1 changed files with 3 additions and 0 deletions

View File

@ -127,6 +127,9 @@ def qt_message_handler(msg_type: qtcore.QtMsgType,
"QCoreApplication is created.",
# Qt 6.4 beta 1: https://bugreports.qt.io/browse/QTBUG-104741
"GL format 0 is not supported",
# WORKAROUND https://bugreports.qt.io/browse/QTBUG-137424
("QObject::disconnect: wildcard call disconnects from destroyed signal of "
"QNativeSocketEngine::unnamed"),
]
# not using utils.is_mac here, because we can't be sure we can successfully
# import the utils module here.