From 1b928842bf2bd33a3c54a79d7c9917a185575f83 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 27 Aug 2020 19:02:58 +0300 Subject: [PATCH] Fix special parameter --- apps/common/main/lib/view/SymbolTableDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/main/lib/view/SymbolTableDialog.js b/apps/common/main/lib/view/SymbolTableDialog.js index 6298f6127..a1755132e 100644 --- a/apps/common/main/lib/view/SymbolTableDialog.js +++ b/apps/common/main/lib/view/SymbolTableDialog.js @@ -721,7 +721,7 @@ define([ // special var data = [{symbol: '—', description: this.textEmDash, shortcutKey: 'Alt+Ctrl+Num -', code: '2014'}, {symbol: '–', description: this.textEnDash, shortcutKey: '', code: '2013'}, - {symbol: '‑', description: this.textNBHyphen, shortcutKey: 'Ctrl+Shift+_', code: '002D', special: true}, + {symbol: '‑', description: this.textNBHyphen, shortcutKey: 'Ctrl+Shift+_', code: '002D', special: {"NonBreakingHyphen":true}}, // {symbol: '', description: this.textSHyphen, shortcutKey: 'Alt+-', code: '00AD'}, {symbol: '', description: this.textEmSpace, shortcutKey: '', code: '2003'}, {symbol: '', description: this.textEnSpace, shortcutKey: '', code: '2002'},