use Gtk::Label::set_text() rather than Gtk::Label::set_markup() where no markup is...
authorPaul Davis <paul@linuxaudiosystems.com>
Tue, 23 Oct 2012 14:45:45 +0000 (14:45 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Tue, 23 Oct 2012 14:45:45 +0000 (14:45 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@13319 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/search_path_option.cc

index 92b7938eddb7771a44daa2f44f0172be8c193bd9..4590183e6c9f5a4e275111027cc3ebae39de26ea 100644 (file)
@@ -74,7 +74,7 @@ SearchPathOption::add_to_page (OptionEditorPage* p)
 
         Label* label = manage (new Label);
         label->set_alignment (0.0, 0.0);
-        label->set_markup (string_compose ("%1", _name));
+        label->set_text (string_compose ("%1", _name));
 
        p->table.attach (*label, 1, 2, n, n + 1, FILL | EXPAND);
        p->table.attach (vbox, 2, 3, n, n + 1, FILL | EXPAND);