diff options
| author | bobzel <zzzman@gmail.com> | 2022-06-05 20:16:02 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-06-05 20:16:02 -0400 |
| commit | 0371242941dfdd1d689d0097140b203bb0b24dea (patch) | |
| tree | b7b0a5d9e4e5851b243167692bc4f7db01afabfe /src/client/views/collections | |
| parent | 5c9b6595a24c5f65bd3935136e64587056aa26a9 (diff) | |
fixed presentations to allow pinning a clip of audio. fixed TabDocViews to be added properly to DocumentManager. fixed presentations to allow groupWithUp to work in tree/stacking view modes. f
Diffstat (limited to 'src/client/views/collections')
| -rw-r--r-- | src/client/views/collections/TabDocView.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client/views/collections/TabDocView.tsx b/src/client/views/collections/TabDocView.tsx index ad01be3a3..dab3d490d 100644 --- a/src/client/views/collections/TabDocView.tsx +++ b/src/client/views/collections/TabDocView.tsx @@ -265,6 +265,9 @@ export class TabDocView extends React.Component<TabDocViewProps> { // ({ selected, title }) => title && (title.style.backgroundColor = selected ? "white" : ""), // { fireImmediately: true }); } + componentDidUpdate() { + this._view && DocumentManager.Instance.AddView(this._view); + } componentWillUnmount() { this._tabReaction?.(); |
