diff options
author | bobzel <zzzman@gmail.com> | 2020-08-25 15:05:59 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-25 15:05:59 -0400 |
commit | eca69a005536dec7fcc129bf4fe7c16acb3c9275 (patch) | |
tree | 069e3ec2409130383b56ac574b94f4c80cee1c74 /src/client/util/CurrentUserUtils.ts | |
parent | 57458679ffe87302b46c64ffaa05f967c84623df (diff) |
added resize handle for searchbox
Diffstat (limited to 'src/client/util/CurrentUserUtils.ts')
-rw-r--r-- | src/client/util/CurrentUserUtils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/CurrentUserUtils.ts b/src/client/util/CurrentUserUtils.ts index 997807ce4..4a51daa9f 100644 --- a/src/client/util/CurrentUserUtils.ts +++ b/src/client/util/CurrentUserUtils.ts @@ -532,7 +532,7 @@ export class CurrentUserUtils { static setupSearchPanel(doc: Doc) { if (doc.mySearchPanelDoc === undefined) { doc.mySearchPanelDoc = new PrefetchProxy(Docs.Create.SearchDocument({ - _width: 500, _height: 400, backgroundColor: "dimGray", ignoreClick: true, _searchDoc: true, + _width: 500, _height: 300, backgroundColor: "dimGray", ignoreClick: true, _searchDoc: true, childDropAction: "alias", lockedPosition: true, _viewType: CollectionViewType.Schema, _chromeStatus: "disabled", title: "sidebar search stack", system: true })) as any as Doc; } |