From b4b1ad893ff9835417636ac5f1c4f2a838a1b392 Mon Sep 17 00:00:00 2001 From: yflory Date: Mon, 30 Mar 2020 12:20:24 +0200 Subject: [PATCH] Disable cursor position in rich text (possible cause of duplicate text) --- www/pad/inner.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/pad/inner.js b/www/pad/inner.js index 8ce0bc55e..ccc657add 100644 --- a/www/pad/inner.js +++ b/www/pad/inner.js @@ -809,8 +809,8 @@ define([ }); /* Display the cursor of other users and send our cursor */ - framework.setCursorGetter(cursors.cursorGetter); - framework.onCursorUpdate(cursors.onCursorUpdate); + //framework.setCursorGetter(cursors.cursorGetter); + //framework.onCursorUpdate(cursors.onCursorUpdate); inner.addEventListener('click', updateCursor); inner.addEventListener('keyup', updateCursor);