diff options
| author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-03-02 22:51:17 -0500 |
|---|---|---|
| committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-03-02 22:51:17 -0500 |
| commit | 2afa23254c2261ce97e10817c65794a67fde601d (patch) | |
| tree | cc824b4f34a843d23ee691eca090c19b35e8def7 /src/client/views/collections/CollectionFreeFormView.tsx | |
| parent | 92f2dd5df2b8be69415c9cbe07dfda45d719c5ea (diff) | |
| parent | 979da9061b6e6cab1f82a316387cb2db1c1eaefb (diff) | |
Merge branch 'master' of github-tsch-brown:browngraphicslab/Dash-Web into navigation
Diffstat (limited to 'src/client/views/collections/CollectionFreeFormView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionFreeFormView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionFreeFormView.tsx b/src/client/views/collections/CollectionFreeFormView.tsx index c81da5a57..f71f2791c 100644 --- a/src/client/views/collections/CollectionFreeFormView.tsx +++ b/src/client/views/collections/CollectionFreeFormView.tsx @@ -163,7 +163,7 @@ export class CollectionFreeFormView extends CollectionViewBase { @action onKeyDown = (e: React.KeyboardEvent<Element>) => { //if not these keys, make a textbox if preview cursor is active! - if (!e.ctrlKey && !e.altKey && !e.shiftKey) { + if (!e.ctrlKey && !e.altKey) { if (this._previewCursorVisible) { //make textbox and add it to this collection let [x, y] = this.getTransform().transformPoint(this._downX, this._downY); (this._downX, this._downY); |
