diff options
| author | bobzel <zzzman@gmail.com> | 2021-02-22 16:09:21 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-02-22 16:09:21 -0500 |
| commit | 4fcb0b69f2b96c5ace46362490d54f1059eb1339 (patch) | |
| tree | 2b7f1c1b8601f627203530dd4b027c15343f2282 /src/client/views/collections/collectionFreeForm | |
| parent | 1ef89b4f56ce8567da3b632e95ea31e1c3c4386a (diff) | |
switched folders so that they're not marked as system anymore. made close menu appear unless something is a system doc.
Diffstat (limited to 'src/client/views/collections/collectionFreeForm')
| -rw-r--r-- | src/client/views/collections/collectionFreeForm/MarqueeView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionFreeForm/MarqueeView.tsx b/src/client/views/collections/collectionFreeForm/MarqueeView.tsx index f5a60effe..d7fc2feda 100644 --- a/src/client/views/collections/collectionFreeForm/MarqueeView.tsx +++ b/src/client/views/collections/collectionFreeForm/MarqueeView.tsx @@ -134,7 +134,7 @@ export class MarqueeView extends React.Component<SubCollectionViewProps & Marque e.stopPropagation(); } else if (e.key === "f" && e.ctrlKey) { e.preventDefault(); - const root = Docs.Create.FreeformDocument([], { title: "folder", _stayInCollection: true, system: true, isFolder: true }); + const root = Docs.Create.FreeformDocument([], { title: "folder", _stayInCollection: true, isFolder: true }); const folder = Docs.Create.TreeDocument([root], { title: "root", isFolder: true, treeViewType: "fileSystem", treeViewTruncateTitleWidth: 150 }); Doc.GetProto(folder).isFolder = true; folder.x = x; |
