13
0

OSC: add new /access_action/group/action f 1 for float only controllers

This commit is contained in:
Len Ovens 2017-03-14 18:47:41 -07:00
parent 35407c7fe8
commit cd4462323f
2 changed files with 9 additions and 1 deletions

View File

@ -867,6 +867,14 @@ OSC::catchall (const char *path, const char* types, lo_arg **argv, int argc, lo_
ret = 0;
} else
if (!strncmp (path, "/access_action/", 15)) {
std::string action_path = path;
access_action (action_path.substr(15));
std::cout << "access_action path = " << action_path.substr(15) << "\n";
ret = 0;
} else
if (strcmp (path, "/strip/listen") == 0) {
cerr << "set up listener\n";

View File

@ -88,7 +88,7 @@ OSC_GUI::OSC_GUI (OSC& p)
++n;
// port entry box
label = manage (new Gtk::Label(_("Manual Port:")));
label = manage (new Gtk::Label(_("Reply Manual Port:")));
label->set_alignment(1, .5);
table->attach (*label, 0, 1, n, n+1, AttachOptions(FILL|EXPAND), AttachOptions(0));
table->attach (port_entry, 1, 2, n, n+1, AttachOptions(FILL|EXPAND), AttachOptions(0), 0, 0);