From eefaef53b71730d94d0027568053679939ccca8a Mon Sep 17 00:00:00 2001 From: grorp Date: Thu, 3 Oct 2024 11:36:48 +0200 Subject: [PATCH] Fix hypertext action firing twice on touchscreen (#15217) --- src/gui/guiHyperText.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/guiHyperText.cpp b/src/gui/guiHyperText.cpp index 6f30ac8ce..44019ebe2 100644 --- a/src/gui/guiHyperText.cpp +++ b/src/gui/guiHyperText.cpp @@ -1146,7 +1146,7 @@ bool GUIHyperText::OnEvent(const SEvent &event) } } - break; + return true; } } }