aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/DragManager.ts
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2021-07-14 13:47:46 -0400
committerbobzel <zzzman@gmail.com>2021-07-14 13:47:46 -0400
commit6b5c40fda530337f3dcb70aa640b085d0d4f1adf (patch)
tree4eea2fd092cf3e167fad4195642401d1511872aa /src/client/util/DragManager.ts
parenta9459901be6ed608fef28d4703072aa594748f84 (diff)
fixed dragging marquees on nested images. fixed images to allow marquees on nested images. changed drag titlebar message.
Diffstat (limited to 'src/client/util/DragManager.ts')
-rw-r--r--src/client/util/DragManager.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/DragManager.ts b/src/client/util/DragManager.ts
index d8c2f913e..88bf6f36d 100644
--- a/src/client/util/DragManager.ts
+++ b/src/client/util/DragManager.ts
@@ -340,7 +340,7 @@ export namespace DragManager {
dragLabel.style.zIndex = "100001";
dragLabel.style.fontSize = "10px";
dragLabel.style.position = "absolute";
- dragLabel.innerText = "press 'a' to embed on drop"; // bcz: need to move this to a status bar
+ dragLabel.innerText = "drag titlebar to embed on drop"; // bcz: need to move this to a status bar
dragDiv.appendChild(dragLabel);
DragManager.Root().appendChild(dragDiv);
}