From 03c9257b119637703482e00816d054320b81f214 Mon Sep 17 00:00:00 2001 From: Po Lu Date: Tue, 25 Jan 2022 10:18:35 +0000 Subject: [PATCH] * src/haiku_support.cc (Highlight): Send events if !highlight_p. --- src/haiku_support.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/haiku_support.cc b/src/haiku_support.cc index 23f7472e3ff..af30bc8b3cb 100644 --- a/src/haiku_support.cc +++ b/src/haiku_support.cc @@ -1650,7 +1650,7 @@ public: r = Frame (); menu->GetMouse (&pt, &buttons); - if (r.Contains (pt)) + if (!highlight_p || r.Contains (pt)) haiku_write (MENU_BAR_HELP_EVENT, &rq); } -- 2.39.2