We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5fa395 commit 4faa3dcCopy full SHA for 4faa3dc
src/lib/app/RvCommon/RvApplication.cpp
@@ -132,7 +132,11 @@ namespace
132
133
// Another known warning/error which we can safely ignore.
134
"Release of profile requested but WebEnginePage still not "
135
- "deleted"sv};
+ "deleted"sv,
136
+
137
+ // Qt pointer dispatch warning when touch events arrive without
138
+ // a target window (harmless, happens during window transitions)
139
+ "skipping QEventPoint"sv};
140
141
return any_of(silenced.begin(), silenced.end(), [text](const auto& msg) { return text.find(msg) != string::npos; });
142
}
0 commit comments