13
0

generic MIDI: re-enable the "select" function

This commit is contained in:
Paul Davis 2022-06-05 15:03:42 -06:00
parent 33b7c38e42
commit 2e027e5894

View File

@ -26,6 +26,8 @@
#include "pbd/compose.h" #include "pbd/compose.h"
#include "ardour/debug.h" #include "ardour/debug.h"
#include "ardour/stripable.h"
#include "ardour/session.h"
using namespace MIDI; using namespace MIDI;
using namespace PBD; using namespace PBD;
@ -167,8 +169,7 @@ MIDIFunction::execute ()
if (!_argument.empty()) { if (!_argument.empty()) {
uint32_t rid; uint32_t rid;
sscanf (_argument.c_str(), "%d", &rid); sscanf (_argument.c_str(), "%d", &rid);
// XX fix me ... need to get stripable, not RID _ui->set_rid_selection (rid);
//_ui->toggle_selection (rid, ARDOUR::PresentationInfo::Flag (ARDOUR::PresentationInfo::Route|ARDOUR::PresentationInfo::VCA));
DEBUG_TRACE (DEBUG::GenericMidi, string_compose ("Function: SetRouteSelection = %1\n", rid)); DEBUG_TRACE (DEBUG::GenericMidi, string_compose ("Function: SetRouteSelection = %1\n", rid));
} }
break; break;