aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/OverlayView.tsx
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2020-02-04 23:52:40 -0500
committerBob Zeleznik <zzzman@gmail.com>2020-02-04 23:52:40 -0500
commitda92903fb49b2c7d34bb44f11bf72a6cd49b8c0d (patch)
tree1a17f1b3161232498bb6083e9bcf2bb69cce32cf /src/client/views/OverlayView.tsx
parent5ff28653b90dde7b97b757794bc1f4ae5ee0f6c4 (diff)
lots of small fixes to templates, presentations, default templates (icon, slide)
Diffstat (limited to 'src/client/views/OverlayView.tsx')
-rw-r--r--src/client/views/OverlayView.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/OverlayView.tsx b/src/client/views/OverlayView.tsx
index 295cd7c6e..7a99bf0ae 100644
--- a/src/client/views/OverlayView.tsx
+++ b/src/client/views/OverlayView.tsx
@@ -144,7 +144,7 @@ export class OverlayView extends React.Component {
return (null);
}
return CurrentUserUtils.UserDocument.overlays instanceof Doc && DocListCast(CurrentUserUtils.UserDocument.overlays.data).map(d => {
- d.inOverlay = true;
+ setTimeout(() => d.inOverlay = true, 0);
let offsetx = 0, offsety = 0;
const onPointerMove = action((e: PointerEvent) => {
if (e.buttons === 1) {