diff options
author | bobzel <zzzman@gmail.com> | 2025-03-04 19:07:45 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-03-04 19:07:45 -0500 |
commit | 84139cbfb20ab53fe42d1c21a74b86368c5822ca (patch) | |
tree | 206b28667085e7986edfb11ffe42dc65ca605078 /src/client/views/MainView.tsx | |
parent | dbe3a3cf1944a69a3ce492481bc22b8f1a8d53e8 (diff) |
fixed maximizing mainview by fixing window event removal in dockingview.
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 cc7c1a42b..afefe3f03 100644 --- a/src/client/views/MainView.tsx +++ b/src/client/views/MainView.tsx @@ -686,7 +686,7 @@ export class MainView extends ObservableReactComponent<object> { ); } @computed get mainDocView() { - const headerBar = this._hideUI || !this.headerBarDocHeight?.() ? null : this.headerBarDocView; + const headerBar = null; // this._hideUI || !this.headerBarDocHeight?.() ? null : this.headerBarDocView; return ( <> {headerBar} |