From 8d4b957598bc5697c54586b7484fa10ebe7af101 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 11 Jun 2019 15:30:25 +0300 Subject: [PATCH] [SSE] Fix Bug 41830 --- apps/common/main/lib/view/SearchDialog.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/common/main/lib/view/SearchDialog.js b/apps/common/main/lib/view/SearchDialog.js index 7a0d0d2e3..dbad485c9 100644 --- a/apps/common/main/lib/view/SearchDialog.js +++ b/apps/common/main/lib/view/SearchDialog.js @@ -299,8 +299,8 @@ getSettings: function() { return { textsearch: this.txtSearch.val(), - casesensitive: this.miMatchCase.checked, - wholewords: this.miMatchWord.checked }; + matchcase: this.miMatchCase.checked, + matchword: this.miMatchWord.checked }; }, textTitle : 'Search & Replace',