add markup escaping for splash screen

git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@13544 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2012-11-23 15:27:49 +00:00
parent 2e51fb15fb
commit 239ff59642
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ void
Splash::message (const string& msg)
{
string str ("<b>");
str += msg;
str += Glib::Markup::escape_text (msg);
str += "</b>";
layout->set_markup (str);