|
@@ -361,10 +361,10 @@ cmDspRC_t cmDspUiLabelCreate( cmDspCtx_t* ctx, cmDspInst_t* inst, unsigned lbl
|
361
|
361
|
return rc;
|
362
|
362
|
}
|
363
|
363
|
|
364
|
|
-cmDspRC_t cmDspUiTimeLineCreate( cmDspCtx_t* ctx, cmDspInst_t* inst, unsigned valVarId, unsigned lblVarId )
|
|
364
|
+cmDspRC_t cmDspUiTimeLineCreate( cmDspCtx_t* ctx, cmDspInst_t* inst, unsigned valVarId, unsigned lblVarId, unsigned tlFileVarId, unsigned audPathVarId )
|
365
|
365
|
{
|
366
|
366
|
cmDspRC_t rc;
|
367
|
|
- unsigned arr[] = { valVarId, lblVarId };
|
|
367
|
+ unsigned arr[] = { valVarId, lblVarId, tlFileVarId, audPathVarId };
|
368
|
368
|
cmDspValue_t v;
|
369
|
369
|
unsigned vn = sizeof(arr)/sizeof(arr[0]);
|
370
|
370
|
cmDsvSetUIntMtx(&v,arr,vn,1);
|
|
@@ -379,7 +379,9 @@ cmDspRC_t cmDspUiTimeLineCreate( cmDspCtx_t* ctx, cmDspInst_t* inst, unsigned
|
379
|
379
|
|
380
|
380
|
// Set the kUiDsvFl on the variables used for the min/max/def/val for this scalar
|
381
|
381
|
// Setting this flag will cause their values to be sent to the UI whenever they change.
|
382
|
|
- cmDspInstVarSetFlags( ctx, inst, valVarId, kUiDsvFl );
|
|
382
|
+ cmDspInstVarSetFlags( ctx, inst, valVarId, kUiDsvFl );
|
|
383
|
+ cmDspInstVarSetFlags( ctx, inst, tlFileVarId, kUiDsvFl );
|
|
384
|
+ cmDspInstVarSetFlags( ctx, inst, audPathVarId, kUiDsvFl );
|
383
|
385
|
return rc;
|
384
|
386
|
}
|
385
|
387
|
|