diff options
author | bobzel <zzzman@gmail.com> | 2020-12-16 12:10:44 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-12-16 12:10:44 -0500 |
commit | 568ede3e32ac0d5cbdec622961ee26af5b4da7eb (patch) | |
tree | 42d2eb94e55838311ce3d4dde9bf4daf213b9b9c /src | |
parent | 0426828be40e077a2d5d30597076db53a26bb81f (diff) |
from last - fix to sidebarheight
Diffstat (limited to 'src')
-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 14da5049e..23c65fa53 100644 --- a/src/client/views/MainView.tsx +++ b/src/client/views/MainView.tsx @@ -237,7 +237,7 @@ export class MainView extends React.Component { getPWidth = () => this._panelWidth - this.propertiesWidth(); getPHeight = () => this._panelHeight; - getContentsHeight = () => this._panelHeight - Number(SEARCH_PANEL_HEIGHT.replace("px", "")); + getContentsHeight = () => this._panelHeight; @computed get mainDocView() { return <DocumentView |