changed fader text length, bold font for sound card buffer size display in error case
This commit is contained in:
parent
e77e8641d0
commit
b3ecc99d72
3 changed files with 6 additions and 6 deletions
|
@ -177,7 +177,7 @@ void CChannelFader::SetOtherSoloState ( const bool bState )
|
||||||
|
|
||||||
void CChannelFader::SetText ( const QString sText )
|
void CChannelFader::SetText ( const QString sText )
|
||||||
{
|
{
|
||||||
const int iBreakPos = 7;
|
const int iBreakPos = 8;
|
||||||
|
|
||||||
// make sure we insert an HTML space (" ") at each beginning and end
|
// make sure we insert an HTML space (" ") at each beginning and end
|
||||||
// of line for nicer look
|
// of line for nicer look
|
||||||
|
|
|
@ -219,13 +219,13 @@ void CClientSettingsDlg::UpdateSoundCardFrame()
|
||||||
( iCurActualBufSize != ( SYSTEM_FRAME_SIZE_SAMPLES * FRAME_SIZE_FACTOR_DEFAULT ) ) &&
|
( iCurActualBufSize != ( SYSTEM_FRAME_SIZE_SAMPLES * FRAME_SIZE_FACTOR_DEFAULT ) ) &&
|
||||||
( iCurActualBufSize != ( SYSTEM_FRAME_SIZE_SAMPLES * FRAME_SIZE_FACTOR_SAFE ) ) )
|
( iCurActualBufSize != ( SYSTEM_FRAME_SIZE_SAMPLES * FRAME_SIZE_FACTOR_SAFE ) ) )
|
||||||
{
|
{
|
||||||
TextLabelActualSndCrdBufDelay->setText ( "<font color=""red"">" +
|
TextLabelActualSndCrdBufDelay->setText ( "<b><font color=""red"">" +
|
||||||
strActSizeValues + "</font>" );
|
strActSizeValues + "</font></b>" );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
TextLabelActualSndCrdBufDelay->setText ( "<font color=""yellow"">" +
|
TextLabelActualSndCrdBufDelay->setText ( "<b><font color=""yellow"">" +
|
||||||
strActSizeValues + "</font>" );
|
strActSizeValues + "</font></b>" );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
@ -122,7 +122,7 @@
|
||||||
<item row="3" column="1" >
|
<item row="3" column="1" >
|
||||||
<widget class="QLineEdit" name="LineEditFaderTag" >
|
<widget class="QLineEdit" name="LineEditFaderTag" >
|
||||||
<property name="maxLength" >
|
<property name="maxLength" >
|
||||||
<number>15</number>
|
<number>16</number>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|
Loading…
Reference in a new issue