13
0
Fork 0

API to control sensitivity of panner UI (livetrax only functionality)

This commit is contained in:
Paul Davis 2024-05-06 14:02:05 -06:00
parent d1140decb1
commit efef5531c9
2 changed files with 12 additions and 0 deletions

View File

@ -210,6 +210,16 @@ PannerUI::~PannerUI ()
delete _knob_panner;
}
void
PannerUI::set_sensitive (bool yn)
{
/* XXX incomplete - written for livetrax and only affects knob */
if (_knob_panner) {
_knob_panner->set_sensitive (yn);
}
}
void
PannerUI::panshell_changed ()
{

View File

@ -76,6 +76,8 @@ public:
void set_available_panners(std::map<std::string,std::string>);
void set_send_drawing_mode (bool);
void set_sensitive (bool);
void effective_pan_display ();
void set_meter_strip_name (std::string name);