From 0196a1cf542ef7ece2663ef1b5692a94e0179eee Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Wed, 4 Mar 2026 17:09:41 -0800 Subject: [PATCH] fix: hide all painter labels in compact mode consistently (#9397) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Add missing `v-if="!compact"` guards to painter label divs so all labels are hidden consistently in compact mode. ## Changes - **What**: Added `v-if="!compact"` to the Color, Hardness, Width, Height, and Background label divs in `WidgetPainter.vue`, matching the existing guards on Tool and Size labels. ## Review Focus Straightforward consistency fix — all 7 label divs now use the same compact-mode guard. Fixes #9235 ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-9397-fix-hide-all-painter-labels-in-compact-mode-consistently-31a6d73d3650811a9d3af8dd290e2bca) by [Unito](https://www.unito.io) --- src/components/painter/WidgetPainter.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/painter/WidgetPainter.vue b/src/components/painter/WidgetPainter.vue index 3b4fc5af8b..993787b393 100644 --- a/src/components/painter/WidgetPainter.vue +++ b/src/components/painter/WidgetPainter.vue @@ -116,6 +116,7 @@