Clean pattern messages.

Replace \" with ".
This commit is contained in:
Roman Telezhynskyi 2021-02-17 19:07:55 +02:00
parent d2c6ebba21
commit c8f12690bc

View file

@ -305,6 +305,8 @@ QString VAbstractApplication::ClearMessage(QString msg)
msg.chop(1);
}
msg.replace("\\\"", "\"");
return msg;
}