diff --git a/js/plugins/EventLabel.js b/js/plugins/EventLabel.js index 51fb051..c388c18 100644 --- a/js/plugins/EventLabel.js +++ b/js/plugins/EventLabel.js @@ -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;