aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/presentationview
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2020-10-20 22:08:34 -0400
committerbobzel <zzzman@gmail.com>2020-10-20 22:08:34 -0400
commit21989281937891b89c8cd4bfeb53027a7d14640e (patch)
tree420d66705e68e84ad2e9a299a1ca8aa8daf35d63 /src/client/views/presentationview
parentd6bbb7f9fc80bb923cad66ec7c7afd54d7af1dcf (diff)
fixed list operation synchronizatoin on server and made preselementbox change
Diffstat (limited to 'src/client/views/presentationview')
-rw-r--r--src/client/views/presentationview/PresElementBox.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/presentationview/PresElementBox.tsx b/src/client/views/presentationview/PresElementBox.tsx
index 9e1a7b615..6fde7c2ac 100644
--- a/src/client/views/presentationview/PresElementBox.tsx
+++ b/src/client/views/presentationview/PresElementBox.tsx
@@ -175,7 +175,7 @@ export class PresElementBox extends ViewBoxBaseComponent<FieldViewProps, PresDoc
} else if (dragArray.length >= 1) {
const doc = document.createElement('div');
doc.className = "presItem-multiDrag";
- doc.innerText = "Move " + dragArray.length + " slides";
+ doc.innerText = "Move " + PresBox.Instance._selectedArray.length + " slides";
doc.style.position = 'absolute';
doc.style.top = (e.clientY) + 'px';
doc.style.left = (e.clientX - 50) + 'px';