From 6a61ddb3af8225608c7615d199a54b3ad22f784b Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 2 Dec 2011 01:58:32 +0000 Subject: [PATCH] fix message about markup elements by changing accel strings from to Mod- git-svn-id: svn://localhost/ardour2/branches/3.0@10854 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/gtkmm2ext/gtk_ui.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libs/gtkmm2ext/gtk_ui.cc b/libs/gtkmm2ext/gtk_ui.cc index 9679113b47..7508b7e57f 100644 --- a/libs/gtkmm2ext/gtk_ui.cc +++ b/libs/gtkmm2ext/gtk_ui.cc @@ -31,7 +31,7 @@ #include #include #include -#include +#include #include #include @@ -361,6 +361,9 @@ UI::set_tip (Widget *w, const gchar *tip, const gchar *hlp) return; } + replace_all (msg, "<", ""); + replace_all (msg, ">", "-"); + req->widget = w; req->msg = msg.c_str(); req->msg2 = hlp;