File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -685,7 +685,7 @@ void ExpandedTableComponent::updatePopup()
685
685
return ;
686
686
}
687
687
688
- if (auto * tableModel = dynamic_cast <StreamTableModel*> (expandedTable->getModel ()))
688
+ if (auto * tableModel = dynamic_cast <StreamTableModel*> (expandedTable->getTableListBoxModel ()))
689
689
{
690
690
tableModel->table = expandedTable.get ();
691
691
}
Original file line number Diff line number Diff line change @@ -60,16 +60,16 @@ bool SelectFile::perform()
60
60
int64 fileDurationMs = processor->samplesToMilliseconds (fileDuration);
61
61
62
62
// Set the maximum time for the time parameters
63
- endTime->getTimeValue ()->setMaxTimeInMilliseconds (fileDurationMs);
64
- startTime->getTimeValue ()->setMaxTimeInMilliseconds (fileDurationMs - 1 );
63
+ endTime->getTimeValue ()->setMaxTimeInMilliseconds (int ( fileDurationMs) );
64
+ startTime->getTimeValue ()->setMaxTimeInMilliseconds (int ( fileDurationMs - 1 ) );
65
65
66
66
// Set the start time to the beginning of the file
67
67
startTime->getTimeValue ()->setTimeFromMilliseconds (0 );
68
68
startTime->setNextValue (startTime->getTimeValue ()->toString (), false );
69
69
processor->setPlaybackStart (originalStartTimeInMs * processor->getCurrentSampleRate () / 1000 );
70
70
71
71
// Set the end time to the end of the file
72
- endTime->getTimeValue ()->setTimeFromMilliseconds (fileDurationMs);
72
+ endTime->getTimeValue ()->setTimeFromMilliseconds (int ( fileDurationMs) );
73
73
endTime->setNextValue (endTime->getTimeValue ()->toString (), false );
74
74
processor->setPlaybackStop (originalEndTimeInMs * processor->getCurrentSampleRate () / 1000 );
75
75
You can’t perform that action at this time.
0 commit comments