From 4d74abd361975faee73650408e27bf794d34cf0c Mon Sep 17 00:00:00 2001 From: kevin Date: Mon, 23 May 2016 18:42:51 -0400 Subject: [PATCH] cmDspPgmKrTimeLineLite.c : Added 'meas' to set the start play position from a number box instead of by graphically clicking the score and timeline. --- dsp/cmDspPgmKrTimeLineLite.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dsp/cmDspPgmKrTimeLineLite.c b/dsp/cmDspPgmKrTimeLineLite.c index 1eab15b..76b20e0 100644 --- a/dsp/cmDspPgmKrTimeLineLite.c +++ b/dsp/cmDspPgmKrTimeLineLite.c @@ -118,6 +118,9 @@ cmDspRC_t _cmDspSysPgm_TimeLineLite(cmDspSysH_t h, void** userPtrPtr ) cmDspInst_t* mi0p = cmDspSysAllocInst(h,"AMeter","In 0", 0); cmDspInst_t* mi1p = cmDspSysAllocInst(h,"AMeter","In 1", 0); + cmDspInst_t* meas = cmDspSysAllocInst(h,"Scalar", "Meas", 5, kNumberDuiId, 1.0, 59.0,1.0, 1.0 ); + cmDspSysInstallCb( h, meas, "val", scp, "meas", NULL); + cmDspSysInstallCb( h, meas, "val", tlp, "meas", NULL); //--------------- Preset controls cmDspSysNewColumn(h,0);