allow to customize variable i/o plugin inputs
[ardour.git] / libs / ardour / pannable.cc
index 92e91f53c1d2068e7574360619103d6c6dd82f8a..f589024435ed281f6953c82c08f8ecc363eda5ac 100644 (file)
@@ -50,7 +50,7 @@ Pannable::Pannable (Session& s)
        , _responding_to_control_auto_state_change (0)
 {
        //boost_debug_shared_ptr_mark_interesting (this, "pannable");
-       
+
        add_control (pan_azimuth_control);
        add_control (pan_elevation_control);
        add_control (pan_width_control);
@@ -242,27 +242,27 @@ Pannable::set_state (const XMLNode& root, int version)
                        if ((*niter)->name() == X_("azimuth")) {
                                prop = (*niter)->property (X_("value"));
                                if (prop) {
-                                       pan_azimuth_control->set_value (atof (prop->value()));
+                                       pan_azimuth_control->set_value (atof (prop->value()), Controllable::NoGroup);
                                }
                        } else if ((*niter)->name() == X_("width")) {
                                prop = (*niter)->property (X_("value"));
                                if (prop) {
-                                       pan_width_control->set_value (atof (prop->value()));
+                                       pan_width_control->set_value (atof (prop->value()), Controllable::NoGroup);
                                }
                        } else if ((*niter)->name() == X_("elevation")) {
                                prop = (*niter)->property (X_("value"));
                                if (prop) {
-                                       pan_elevation_control->set_value (atof (prop->value()));
+                                       pan_elevation_control->set_value (atof (prop->value()), Controllable::NoGroup);
                                }
                        } else if ((*niter)->name() == X_("frontback")) {
                                prop = (*niter)->property (X_("value"));
                                if (prop) {
-                                       pan_frontback_control->set_value (atof (prop->value()));
+                                       pan_frontback_control->set_value (atof (prop->value()), Controllable::NoGroup);
                                }
                        } else if ((*niter)->name() == X_("lfe")) {
                                prop = (*niter)->property (X_("value"));
                                if (prop) {
-                                       pan_lfe_control->set_value (atof (prop->value()));
+                                       pan_lfe_control->set_value (atof (prop->value()), Controllable::NoGroup);
                                }
                        }
                }