diff options
author | bobzel <zzzman@gmail.com> | 2023-06-22 10:14:26 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-06-22 10:14:26 -0400 |
commit | 72dad52c4fea5a2fccabacbb6a49ca1494093954 (patch) | |
tree | ea46fdc8c4c3cffbe9ea5b494f086f09206a716a /src/fields/Doc.ts | |
parent | 1bc15f9b408d35639cea37ea1c29e7cdbd326301 (diff) |
cleaned up dragging - abort presItem drags properly, fix naming for drag/dropAction, small fix undo of drag removeproperties, dragging in/out of headerBar, fixed isContentActive to avoid SnappingManager.GetIsDragging. fixed resizing videos.
Diffstat (limited to 'src/fields/Doc.ts')
-rw-r--r-- | src/fields/Doc.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fields/Doc.ts b/src/fields/Doc.ts index c674a20d2..c9f7e4114 100644 --- a/src/fields/Doc.ts +++ b/src/fields/Doc.ts @@ -776,7 +776,7 @@ export namespace Doc { linkMap.set(link[Id], await Doc.makeClone(link, cloneMap, linkMap, rtfs, exclusions, pruneDocs, cloneLinks)); } }); - Doc.SetInPlace(copy, 'title', 'CLONE: ' + doc.title, true); + Doc.SetInPlace(copy, 'title', '>:' + doc.title, true); copy.cloneOf = doc; cloneMap.set(doc[Id], copy); |