merge fixes
This commit is contained in:
parent
9cdf178e86
commit
50ccb63163
3 changed files with 12 additions and 7 deletions
|
@ -3,8 +3,11 @@
|
|||
|
||||
|
||||
|
||||
|
||||
3.5.6git
|
||||
|
||||
- enable/disable recording from command line, coded by pljones (#228)
|
||||
|
||||
- added check in acknowledge message, coded by atsampson (#302)
|
||||
|
||||
- bug fix: on MacOS declare an activity to ensure the process doesn't get throttled
|
||||
|
|
|
@ -400,11 +400,11 @@ CServer::CServer ( const int iNewMaxNumChan,
|
|||
QString().number( static_cast<int> ( iPortNumber ) ) );
|
||||
}
|
||||
|
||||
// Enable jam recording (if requested) - kicks off the thread
|
||||
// enable jam recording (if requested) - kicks off the thread
|
||||
if ( !strRecordingDirName.isEmpty() )
|
||||
{
|
||||
bRecorderInitialised = JamRecorder.Init ( this, iServerFrameSizeSamples );
|
||||
bEnableRecording = bRecorderInitialised;
|
||||
bEnableRecording = bRecorderInitialised;
|
||||
}
|
||||
|
||||
// enable all channels (for the server all channel must be enabled the
|
||||
|
@ -717,8 +717,10 @@ void CServer::RequestNewRecording()
|
|||
|
||||
void CServer::SetEnableRecording ( bool bNewEnableRecording )
|
||||
{
|
||||
if ( bRecorderInitialised ) {
|
||||
if ( bRecorderInitialised )
|
||||
{
|
||||
bEnableRecording = bNewEnableRecording;
|
||||
|
||||
if ( !bEnableRecording )
|
||||
{
|
||||
emit StopRecorder();
|
||||
|
|
|
@ -699,9 +699,9 @@ void CServerDlg::UpdateRecorderStatus ( QString sessionDir )
|
|||
}
|
||||
|
||||
Qt::CheckState csIsEnabled;
|
||||
QString currentSessionDir = edtCurrentSessionDir->text();
|
||||
bool bIsRecording = false;
|
||||
QString strRecorderStatus;
|
||||
QString currentSessionDir = edtCurrentSessionDir->text();
|
||||
bool bIsRecording = false;
|
||||
QString strRecorderStatus;
|
||||
|
||||
if ( pServer->GetRecordingEnabled() )
|
||||
{
|
||||
|
@ -719,7 +719,7 @@ void CServerDlg::UpdateRecorderStatus ( QString sessionDir )
|
|||
}
|
||||
else
|
||||
{
|
||||
csIsEnabled = Qt::CheckState::Unchecked;
|
||||
csIsEnabled = Qt::CheckState::Unchecked;
|
||||
strRecorderStatus = tr ( "Not enabled" );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue