diff options
author | bobzel <zzzman@gmail.com> | 2022-05-24 09:08:04 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-05-24 09:08:04 -0400 |
commit | dd583ba1728d2b941cd253f68636a43b5b6c1930 (patch) | |
tree | 8fe527c92ee7b11cd36606918c8212688da1e099 /src/client/views/nodes/DocumentView.tsx | |
parent | 13924d1b0bd674146b940bb6e31ad6054c447b09 (diff) |
hide resize handles on headerBar items.
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 54bb66f7f..6b0b92889 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -123,6 +123,8 @@ export interface DocumentViewSharedProps { PanelWidth: () => number; PanelHeight: () => number; docViewPath: () => DocumentView[]; + childHideDecorationTitle?: () => boolean; + childHideResizeHandles?: () => boolean; dataTransition?: string; // specifies animation transition - used by collectionPile and potentially other layout engines when changing the size of documents so that the change won't be abrupt styleProvider: Opt<StyleProviderFunc>; focus: DocFocusFunc; |