From cbb6d098a7b10923b5c4f47d55ad0f737829a4d5 Mon Sep 17 00:00:00 2001 From: Pablo Alba Date: Tue, 27 Jan 2026 17:58:07 +0100 Subject: [PATCH] :bug: Fix boolean operators in menu for boards (#8177) --- CHANGES.md | 1 + frontend/src/app/main/ui/workspace/context_menu.cljs | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index f05c651985..15a04aa2f2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -30,6 +30,7 @@ - Fix displaying a hidden user avatar when there is only one more [Taiga #13058](https://tree.taiga.io/project/penpot/issue/13058) - Fix unhandled exception on open-new-window helper [Github #7787](https://github.com/penpot/penpot/issues/7787) - Fix exception on uploading large fonts [Github #8135](https://github.com/penpot/penpot/pull/8135) +- Fix boolean operators in menu for boards [Taiga #13174](https://tree.taiga.io/project/penpot/issue/13174) ## 2.13.0 (Unreleased) diff --git a/frontend/src/app/main/ui/workspace/context_menu.cljs b/frontend/src/app/main/ui/workspace/context_menu.cljs index 75caa6318f..b2a69eca34 100644 --- a/frontend/src/app/main/ui/workspace/context_menu.cljs +++ b/frontend/src/app/main/ui/workspace/context_menu.cljs @@ -437,7 +437,8 @@ [:> menu-entry* {:title (tr "workspace.shape.menu.flatten") :on-click do-transform-to-path}]) - (when (and (not disable-booleans) + (when (and (not has-frame?) + (not disable-booleans) (or multiple? (and single? (or is-group? is-bool?)))) [:> menu-entry* {:title (tr "workspace.shape.menu.path")} [:> menu-entry* {:title (tr "workspace.shape.menu.union")