diff options
author | bobzel <zzzman@gmail.com> | 2023-10-31 17:35:45 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-10-31 17:35:45 -0400 |
commit | bc14d740a23d922df96f92f99eacb51f70139643 (patch) | |
tree | 6e9ca9d4ec9962153f3690d0ab716678fa415a53 /src/client/views/collections/CollectionStackedTimeline.tsx | |
parent | cf95923feebb274249283c7bb82de5849060a9a8 (diff) |
fixed deselecting video/audio with escape. fixed focus or open on iconified docs to just show them (not toggle), and fixed to showDocument on target unless its container isn't displayed.
Diffstat (limited to 'src/client/views/collections/CollectionStackedTimeline.tsx')
-rw-r--r-- | src/client/views/collections/CollectionStackedTimeline.tsx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionStackedTimeline.tsx b/src/client/views/collections/CollectionStackedTimeline.tsx index c4650647c..7c61bc4da 100644 --- a/src/client/views/collections/CollectionStackedTimeline.tsx +++ b/src/client/views/collections/CollectionStackedTimeline.tsx @@ -203,7 +203,6 @@ export class CollectionStackedTimeline extends CollectionSubView<CollectionStack this._trimStart = this.clipStart; this._trimStart = this.clipEnd; this._trimming = TrimScope.None; - e.stopPropagation(); break; case 'ArrowLeft': this.props.setTime(Math.min(Math.max(this.clipStart, this.currentTime - jump), this.clipEnd)); |