Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit a301e8c

Browse files
committed
revert to using only T key as a trigger; Ctrl+T triggers a new tab on Windows
1 parent 700609d commit a301e8c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/extensions/default/CSSShapesEditor/thirdparty/CSSShapesEditorProvider.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
Declared globally within module so it can be removed by Provider.remove()
8383
Defined here so it can access scope.inst
8484
85-
Ctrl+T toggles the free transform editor (scale/rotate)
85+
T key toggles the free transform editor (scale/rotate)
8686
Esc key turns off free transform editor; quietly ignored if editor was never turned on.
8787
8888
@param {Event} e keydown event
@@ -92,8 +92,8 @@
9292
if (scope.inst.type !== "polygon") {
9393
return;
9494
}
95-
// Ctrl+T toggles rotate/scale editor
96-
if (e.ctrlKey && e.keyIdentifier === "U+0054") {
95+
// T key toggles rotate/scale editor
96+
if (e.keyIdentifier === "U+0054") {
9797
scope.inst.toggleFreeTransform();
9898
}
9999

0 commit comments

Comments
 (0)