I reduced the number of stored fader settings to avoid having the ini file being too large
This commit is contained in:
parent
e89b871326
commit
a3b0215128
2 changed files with 3 additions and 2 deletions
|
@ -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 );
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue