From 7a85b1b7caeb3fb390aa488d7061e29b9a77cc6b Mon Sep 17 00:00:00 2001 From: Juergen Spitzmueller Date: Mon, 3 Jun 2024 16:10:17 +0200 Subject: [PATCH] Show full inset context-menu when clicking on text part of collapsible (#10370) Re-fix this since #12907 has been resolved --- src/insets/InsetCollapsible.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/insets/InsetCollapsible.cpp b/src/insets/InsetCollapsible.cpp index d6c0461543..106788931f 100644 --- a/src/insets/InsetCollapsible.cpp +++ b/src/insets/InsetCollapsible.cpp @@ -762,7 +762,7 @@ string InsetCollapsible::contextMenu(BufferView const & bv, int x, if (x < xo(bv) + dim.wid && y < yo(bv) + dim.des) return context_menu; - return it_context_menu; + return context_menu + ";" + it_context_menu; } -- 2.39.5