small fix (code style)
This commit is contained in:
parent
61022721f7
commit
46235af2da
1 changed files with 6 additions and 2 deletions
|
@ -213,7 +213,9 @@ void CChannelFader::ResetSoloState()
|
|||
// muted but all others, we simply have to uncheck the check box (make
|
||||
// sure the setChecked does not fire a signal)
|
||||
pcbSolo->blockSignals ( true );
|
||||
pcbSolo->setChecked ( false );
|
||||
{
|
||||
pcbSolo->setChecked ( false );
|
||||
}
|
||||
pcbSolo->blockSignals ( false );
|
||||
}
|
||||
|
||||
|
@ -229,7 +231,9 @@ void CChannelFader::SetOtherSoloState ( const bool bState )
|
|||
// we do not want to fire a signal with the following set function
|
||||
// -> block signals temporarily
|
||||
pcbSolo->blockSignals ( true );
|
||||
pcbSolo->setChecked ( false );
|
||||
{
|
||||
pcbSolo->setChecked ( false );
|
||||
}
|
||||
pcbSolo->blockSignals ( false );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue