13
0

Use correct property names for Editor transport controllable state

These are normalized in the PBD::XMLProperty ctor, which is why
Editor::get_transport_controllable_state() uses the hyphenated names to
retrieve the properties and will not result in any state format change.
This commit is contained in:
Tim Mayberry 2017-05-25 20:42:45 +10:00
parent 244313f43f
commit c72e3f16a1

View File

@ -955,10 +955,10 @@ ARDOUR_UI::get_transport_controllable_state ()
node->set_property (X_("roll"), roll_controllable->id());
node->set_property (X_("stop"), stop_controllable->id());
node->set_property (X_("goto_start"), goto_start_controllable->id());
node->set_property (X_("goto_end"), goto_end_controllable->id());
node->set_property (X_("auto_loop"), auto_loop_controllable->id());
node->set_property (X_("play_selection"), play_selection_controllable->id());
node->set_property (X_("goto-start"), goto_start_controllable->id());
node->set_property (X_("goto-end"), goto_end_controllable->id());
node->set_property (X_("auto-loop"), auto_loop_controllable->id());
node->set_property (X_("play-selection"), play_selection_controllable->id());
node->set_property (X_("rec"), rec_controllable->id());
node->set_property (X_("shuttle"), shuttle_box.controllable()->id());