Skip to content

Commit 4faa3dc

Browse files
Silence skipping qeventpoint message from qt
Signed-off-by: Patrick Bergeron <[email protected]>
1 parent b5fa395 commit 4faa3dc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/lib/app/RvCommon/RvApplication.cpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,11 @@ namespace
132132

133133
// Another known warning/error which we can safely ignore.
134134
"Release of profile requested but WebEnginePage still not "
135-
"deleted"sv};
135+
"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};
136140

137141
return any_of(silenced.begin(), silenced.end(), [text](const auto& msg) { return text.find(msg) != string::npos; });
138142
}

0 commit comments

Comments
 (0)