revert the coupling of location UI clock modes to transport clocks

This commit is contained in:
Paul Davis 2018-10-10 11:56:49 -04:00
parent 0542a30901
commit 1b75e294b9
2 changed files with 0 additions and 11 deletions

View File

@ -761,8 +761,6 @@ LocationUI::LocationUI (std::string state_node_name)
_clock_group = new ClockGroup;
ARDOUR_UI::instance()->primary_clock->mode_changed.connect (sigc::mem_fun(*this, &LocationUI::set_clock_mode_from_primary));
VBox* vbox = manage (new VBox);
Table* table = manage (new Table (2, 2));
@ -1105,13 +1103,6 @@ LocationUI::refresh_location_list ()
}
}
void
LocationUI::set_clock_mode_from_primary ()
{
_clock_group->set_clock_mode (ARDOUR_UI::instance()->primary_clock->mode());
_mode_set = true;
}
void
LocationUI::set_session(ARDOUR::Session* s)
{

View File

@ -215,8 +215,6 @@ private:
bool _mode_set;
std::string _state_node_name;
void set_clock_mode_from_primary ();
};
class LocationUIWindow : public ArdourWindow