From 696a4490ff0466a0ec4f45cb78fd8894b326853a Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 5 Jun 2025 11:17:35 +0200 Subject: [PATCH] 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 --- qutebrowser/utils/qtlog.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/qutebrowser/utils/qtlog.py b/qutebrowser/utils/qtlog.py index 215123f4a..775895ed3 100644 --- a/qutebrowser/utils/qtlog.py +++ b/qutebrowser/utils/qtlog.py @@ -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.