This commit is contained in:
DazedAnon 2024-11-20 14:07:47 -06:00
parent 144eb73772
commit e578d83fc2

View file

@ -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;