summaryrefslogtreecommitdiff
path: root/gtk2_ardour/luadialog.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-02-20 17:22:36 +0100
committerRobin Gareus <robin@gareus.org>2019-02-20 17:22:36 +0100
commit157d923cdd919efe380522f8e30e04fbdb1a4653 (patch)
treeb22cb81ca1c8bcb7c58a566a6a2f08a46b698aab /gtk2_ardour/luadialog.cc
parentdd2ee68e21709d193c724c11bea83533ce4f1b0a (diff)
ALlow Markup for LuaDialog.Message
Diffstat (limited to 'gtk2_ardour/luadialog.cc')
-rw-r--r--gtk2_ardour/luadialog.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/luadialog.cc b/gtk2_ardour/luadialog.cc
index 5f49b17caf..80fe253f74 100644
--- a/gtk2_ardour/luadialog.cc
+++ b/gtk2_ardour/luadialog.cc
@@ -40,7 +40,7 @@ using namespace LuaDialog;
* Simple Message Dialog
*/
Message::Message (std::string const& title, std::string const& msg, Message::MessageType mt, Message::ButtonType bt)
- : _message_dialog (msg, false, to_gtk_mt (mt), to_gtk_bt (bt), true)
+ : _message_dialog (msg, true, to_gtk_mt (mt), to_gtk_bt (bt), true)
{
_message_dialog.set_title (title);
}