diff options
author | bobzel <zzzman@gmail.com> | 2021-07-26 12:35:25 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-07-26 12:35:25 -0400 |
commit | 26e9e0a554ee5aff001e2bc10b6802a4e830b63c (patch) | |
tree | 30852aac1262afe6699071c52a4e7d710f92f433 /src/client/documents/Documents.ts | |
parent | c7a0a346238c55b8c223798f75cef758418aa051 (diff) |
cleaned up pile view a bit so that it doesn't scale up huge when there's one document. made the pile be round and drop-shadowed. made the pile go away immediately if there are no documents. made it work with undo.
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index c2cdf7f72..f1db3e32c 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -1333,9 +1333,7 @@ export namespace DocUtils { newCollection.x = NumCast(newCollection.x) + NumCast(newCollection._width) / 2 - 55; newCollection.y = NumCast(newCollection.y) + NumCast(newCollection._height) / 2 - 55; newCollection._width = newCollection._height = 110; - //newCollection.borderRounding = "40px"; newCollection._jitterRotation = 10; - newCollection._backgroundColor = "gray"; return newCollection; } |