13
0

fix message about markup elements by changing accel strings from <Mod> to Mod-

git-svn-id: svn://localhost/ardour2/branches/3.0@10854 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2011-12-02 01:58:32 +00:00
parent 8e046a1127
commit 6a61ddb3af

View File

@ -31,7 +31,7 @@
#include <pbd/touchable.h>
#include <pbd/failed_constructor.h>
#include <pbd/pthread_utils.h>
#include <pbd/stacktrace.h>
#include <pbd/replace_all.h>
#include <gtkmm2ext/application.h>
#include <gtkmm2ext/gtk_ui.h>
@ -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;