Enable some code to make plugin ui bounds more sensible.
[ardour.git] / gtk2_ardour / midi_time_axis.cc
index ef66779f47401769c217c6db8091ad526e5d21f9..9453a05611c45ec4e7efdce44efbfc55190163fa 100644 (file)
@@ -175,7 +175,7 @@ guint32
 MidiTimeAxisView::show_at (double y, int& nth, Gtk::VBox *parent)
 {
        ensure_xml_node ();
-       xml_node->add_property ("shown_editor", "yes");
+       xml_node->add_property ("shown-editor", "yes");
                
        guint32 ret = TimeAxisView::show_at (y, nth, parent);
        return ret;
@@ -185,7 +185,7 @@ void
 MidiTimeAxisView::hide ()
 {
        ensure_xml_node ();
-       xml_node->add_property ("shown_editor", "no");
+       xml_node->add_property ("shown-editor", "no");
 
        TimeAxisView::hide ();
 }