diff --git a/packages/excalidraw/components/Actions.tsx b/packages/excalidraw/components/Actions.tsx index 6454200a48..4d06e17ce9 100644 --- a/packages/excalidraw/components/Actions.tsx +++ b/packages/excalidraw/components/Actions.tsx @@ -330,8 +330,13 @@ const CombinedShapeProperties = ({ hasBackground(element.type) && !isTransparent(element.backgroundColor), ); - const shouldShowCombinedProperties = targetElements.length > 0; - + const shouldShowCombinedProperties = + targetElements.length > 0 || + (appState.activeTool.type !== "selection" && + appState.activeTool.type !== "eraser" && + appState.activeTool.type !== "hand" && + appState.activeTool.type !== "laser" && + appState.activeTool.type !== "lasso"); const isOpen = appState.openPopup === "compactStrokeStyles"; if (!shouldShowCombinedProperties) {