{isProcessing && (
@@ -217,7 +192,6 @@ export const ShapeResizer: React.FC = () => {
Select multiple shapes, then click the button to resize all shapes to match the first one.
- Shortcut: ⌘+⇧+M
diff --git a/src/taskpane/taskpane.html b/src/taskpane/taskpane.html
index 54ee51b1..2716cfaa 100644
--- a/src/taskpane/taskpane.html
+++ b/src/taskpane/taskpane.html
@@ -144,14 +144,6 @@
}, 500);
});
- // Add this to enable keyboard shortcuts throughout the app
- document.addEventListener('keydown', function(e) {
- // Allow keyboard shortcuts to work even when focus is not on interactive elements
- if (e.metaKey) {
- // Don't prevent default for all Command shortcuts - the React components
- // will handle the specific ones they need
- }
- });