mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 13:45:43 +01:00
[Summary] Fixed bug on Output Configuration Changed with Global Mute button
[Reviewed] GZharun
This commit is contained in:
parent
4f50a50cd4
commit
cd091631d6
2 changed files with 7 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue