From 7f0c53fb91979860f4026b61ef25888f0a37d163 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 17 Aug 2021 22:12:29 +0300 Subject: [PATCH] [DE] Fix Bug 51925 --- apps/documenteditor/main/app/view/FormSettings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/main/app/view/FormSettings.js b/apps/documenteditor/main/app/view/FormSettings.js index 0f88ab454..a89b0b793 100644 --- a/apps/documenteditor/main/app/view/FormSettings.js +++ b/apps/documenteditor/main/app/view/FormSettings.js @@ -747,7 +747,7 @@ define([ rec = (this._state.listValue!==undefined) ? this.list.store.findWhere({value: this._state.listValue}) : this.list.store.at(this._state.listIndex); } if (rec) { - this.list.selectRecord(rec); + this.list.selectRecord(rec, this.txtNewValue._input.is(':focus')); this.list.scrollToRecord(rec); } else if (!this.txtNewValue._input.is(':focus')) { this.txtNewValue.setValue('');