diff options
author | bobzel <zzzman@gmail.com> | 2020-08-10 08:17:23 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-10 08:17:23 -0400 |
commit | 52a0e603f77d1a82fe7f06badb9717813ef38e05 (patch) | |
tree | 5f003529829719058600a43e2c84717744161bf1 /src/client/views/MainView.tsx | |
parent | 88afbd3c9e8e0233c42ddd4549017ae89b64d62f (diff) | |
parent | 3dab659503e98fe75a9c0671057771ff666d7e10 (diff) |
Merge pull request #521 from browngraphicslab/acls_uv
Bugfix and new stuff
Diffstat (limited to 'src/client/views/MainView.tsx')
-rw-r--r-- | src/client/views/MainView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/MainView.tsx b/src/client/views/MainView.tsx index f5dccd567..4d5dfc99e 100644 --- a/src/client/views/MainView.tsx +++ b/src/client/views/MainView.tsx @@ -441,7 +441,7 @@ export class MainView extends React.Component { } sidebarScreenToLocal = () => new Transform(0, (CollectionMenu.Instance.Pinned ? -35 : 0), 1); //sidebarScreenToLocal = () => new Transform(0, (RichTextMenu.Instance.Pinned ? -35 : 0) + (CollectionMenu.Instance.Pinned ? -35 : 0), 1); - mainContainerXf = () => this.sidebarScreenToLocal().translate(-55, 0); + mainContainerXf = () => this.sidebarScreenToLocal().translate(-55, -this._buttonBarHeight); @computed get closePosition() { return 55 + this.flyoutWidth; } @computed get flyout() { |