From 565605643d05bf169fc73a3572730bf0edea0363 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 19 Nov 2020 13:25:51 +0300 Subject: [PATCH] [DE] Fix Bug 47398 --- apps/documenteditor/main/app/view/CaptionDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/main/app/view/CaptionDialog.js b/apps/documenteditor/main/app/view/CaptionDialog.js index 570b63aad..2cbd4fc30 100644 --- a/apps/documenteditor/main/app/view/CaptionDialog.js +++ b/apps/documenteditor/main/app/view/CaptionDialog.js @@ -434,7 +434,7 @@ define([ event.preventDefault(); } } else if (key === 'Delete') { - if (event.target.selectionStart < me.positionCaption - 1) { + if (event.target.selectionStart < me.positionCaption) { event.preventDefault(); } } else if (key !== 'End') {