Remove _
This commit is contained in:
parent
144eb73772
commit
e578d83fc2
1 changed files with 1 additions and 1 deletions
|
|
@ -443,7 +443,7 @@
|
|||
if (!label) {
|
||||
return;
|
||||
}
|
||||
const newText = PluginManagerEx.convertEscapeCharacters(label.text);
|
||||
const newText = PluginManagerEx.convertEscapeCharacters(label.text.replace(/_/g, ' '));
|
||||
if (this._text !== newText || this._size !== label.size) {
|
||||
this._text = newText;
|
||||
this._size = label.size;
|
||||
|
|
|
|||
Loading…
Reference in a new issue