diff options
| author | bobzel <zzzman@gmail.com> | 2023-07-01 13:25:40 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-07-01 13:25:40 -0400 |
| commit | f96be621d52ebad3a65b891fe105eac5d128feee (patch) | |
| tree | b0ca6c05b1f0c0592a310e09e82f666953d8041b /src/client/views/collections/CollectionNoteTakingView.tsx | |
| parent | c0d45c06df10d29cae5f46eeecb220a11588c3a1 (diff) | |
turned off notetaking chrome in browse mode. fixed pointereventrs for text in/out of browse mode. changed background to be gray by default
Diffstat (limited to 'src/client/views/collections/CollectionNoteTakingView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionNoteTakingView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionNoteTakingView.tsx b/src/client/views/collections/CollectionNoteTakingView.tsx index fb995301a..53a42d2a6 100644 --- a/src/client/views/collections/CollectionNoteTakingView.tsx +++ b/src/client/views/collections/CollectionNoteTakingView.tsx @@ -47,7 +47,7 @@ export class CollectionNoteTakingView extends CollectionSubView() { @observable _cursor: CursorProperty = 'grab'; @observable _scroll = 0; @computed get chromeHidden() { - return BoolCast(this.layoutDoc.chromeHidden); + return BoolCast(this.layoutDoc.chromeHidden) || this.props.onBrowseClick?.() ? true : false; } // columnHeaders returns the list of SchemaHeaderFields currently being used by the layout doc to render the columns @computed get colHeaderData() { |
