I reduced the number of stored fader settings to avoid having the ini file being too large

This commit is contained in:
Volker Fischer 2020-04-05 17:57:39 +02:00
parent e89b871326
commit a3b0215128
2 changed files with 3 additions and 2 deletions

View File

@ -250,7 +250,8 @@ void CChannelFader::SetFaderIsSolo ( const bool bIsSolo )
pcbSolo->setChecked ( bIsSolo );
}
void CChannelFader::SetFaderIsMute ( const bool bIsMute ) {
void CChannelFader::SetFaderIsMute ( const bool bIsMute )
{
// changing the state automatically emits the signal, too
pcbMute->setChecked ( bIsMute );
}

View File

@ -167,7 +167,7 @@ LED bar: lbr
#define MAX_NUM_SERVER_ADDR_ITEMS 6
// maximum number of fader settings to be stored (together with the fader tags)
#define MAX_NUM_STORED_FADER_SETTINGS 200
#define MAX_NUM_STORED_FADER_SETTINGS 100
// defines for LED input level meter
#define NUM_STEPS_INP_LEV_METER 8