From c7bacc34d6532baf0c265f51495c7901fd0cead8 Mon Sep 17 00:00:00 2001 From: wmayer Date: Thu, 7 Sep 2023 20:29:44 +0200 Subject: [PATCH] Gui: filter warning about dead keys Forum thread: https://forum.freecad.org/viewtopic.php?t=80981 --- src/Gui/Application.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Gui/Application.cpp b/src/Gui/Application.cpp index 132c6f6218..3c08f1f89b 100644 --- a/src/Gui/Application.cpp +++ b/src/Gui/Application.cpp @@ -1745,6 +1745,7 @@ void setCategoryFilterRules() stream << "qt.qpa.xcb.warning=false\n"; stream << "qt.qpa.mime.warning=false\n"; stream << "qt.svg.warning=false\n"; + stream << "qt.xkb.compose.warning=false\n"; stream.flush(); QLoggingCategory::setFilterRules(filter); }