[Summary] Fixed bug on Output Configuration Changed with Global Mute button

[Reviewed] GZharun
This commit is contained in:
Mykola 2014-10-01 12:42:00 +03:00
parent 4f50a50cd4
commit cd091631d6
2 changed files with 7 additions and 0 deletions

View file

@ -136,6 +136,12 @@ MasterBusUI::MasterBusUI (Session* sess, PublicEditor& ed)
MISSING_INVALIDATOR,
boost::bind (&MasterBusUI::update_master_bus_selection, this),
gui_context ());
EngineStateController::instance()->OutputConfigChanged.connect (_output_mode_connection,
MISSING_INVALIDATOR,
boost::bind (&MasterBusUI::
on_output_connection_mode_changed, this),
gui_context());
init(sess);
}

View file

@ -96,6 +96,7 @@ private:
boost::shared_ptr<ARDOUR::Route> _route;
PBD::ScopedConnection _mode_connection;
PBD::ScopedConnection _output_mode_connection;
Gtk::Box& _level_meter_home;
LevelMeterHBox _level_meter;